X
XP
I need the following translated into functional SQL:
Select * FROM tblHCounts WHERE
RCD_NEW = 'N' AND
(RCD_CHG = 'N' OR RCD_CHG = 'n') AND
RCD_ID NOT IN tblHChange
Could someone please help me out with this?
Thanks much in advance...
Select * FROM tblHCounts WHERE
RCD_NEW = 'N' AND
(RCD_CHG = 'N' OR RCD_CHG = 'n') AND
RCD_ID NOT IN tblHChange
Could someone please help me out with this?
Thanks much in advance...