I have the following SQL -
This gives me the results of both the 'echo' and 'holter', Is there a way to  take RHRN's which has both ?
select                     		
ocmi.name 'Item Name',
o.Modifier 'Modifier',  	
cv.idcode 'RHRN',	
cv.visitidcode 'Patient Encounter',	
cv.currentlocation 'Location', 	
o.idcode 'Order ID',
o.OrderStatusCode 'Order Status',
o.entered 'Date entered',
o.RequestedDtm 'Order Requested Date',
cuu.DisplayName 'Requesting MD',
cuu.OccupationCode 'Provider Role',		   	   	
cu.DisplayName 'Entering User',
o.EnterRole 'Entering User Role'  			
from                 		
cv3order o           		
join cv3ordercatalogmasteritem ocmi on o.ordercatalogmasteritemguid=ocmi.guid		
join CV3OrderStatus cus on o. OrderStatusCode=cus.Code	
join cv3clientvisit cv on o.clientvisitguid=cv.guid	    	
join CV3User cu on o.userGUID=cu.guid
join CV3User cuu on o.CareProviderGUID=cuu.guid
where
(ocmi.name like 'holter%' or  ocmi.name like 'ECHO%')
and o.entered > '2017-01-01'
and ocmi.active=1 AND CurrentLocation NOT LIKE 'ACH%'
order by
RHRN