Hi there,
I was trying to select Not NULL record from below query but it did not return anything. Could anyone please help? Basically, I want to get only records the people that did not order.
Thank you so much.
SELECT result1.*
FROM
(SELECT tbl1.Mail, tbl2.Order
FROM tbl1
left outer join tbl2
on tbl1.ID=tbl2.ID
) as Result1
WHERE result1.Order = Null
I was trying to select Not NULL record from below query but it did not return anything. Could anyone please help? Basically, I want to get only records the people that did not order.
Thank you so much.
SELECT result1.*
FROM
(SELECT tbl1.Mail, tbl2.Order
FROM tbl1
left outer join tbl2
on tbl1.ID=tbl2.ID
) as Result1
WHERE result1.Order = Null