Hello,
I am haven bit of problem trying to get this subquery to work, what I want to do is filter out data if exist in another table with today date as timestamp.
I just need some help making sure this is proper way to do subquery.
SELECT reservationID FROM ResTans WHERE ReservationID NOT IN ( Select reservationID from FaxTransactions Where CONVERT(Char (10), SubmitDate, 101) <> CONVERT(Char (10), GetDate(), 101))
Thanks
Thanks
I am haven bit of problem trying to get this subquery to work, what I want to do is filter out data if exist in another table with today date as timestamp.
I just need some help making sure this is proper way to do subquery.
SELECT reservationID FROM ResTans WHERE ReservationID NOT IN ( Select reservationID from FaxTransactions Where CONVERT(Char (10), SubmitDate, 101) <> CONVERT(Char (10), GetDate(), 101))
Thanks
Thanks