I am new to TSQL.
Have two tables with rows item_guid . I have to join these two tables and check for the item_guid which are not present in the item_guid of second table
select * from m_items as o join m_o_items as b on o.item_guid!= b.order_item_guid
is going to infinite loop. checking the each and every item_guid with each and every row guid of second table