YANKRAY
Technical User
- Nov 7, 2003
- 283
I am using CR10.
How can I write the following SQL Query to run as a Crystal Report?
select a.*
from sr_work_card a
where not exists (select 'x'
from sr_wc_task b
where b.mpd_cd = a.mpd_cd
and b.work_card_no = a.work_card_no
and b.revision_no = a.revision_no)
What I am trying to retrieve are the records from sr_work_card that do not have a matching record in sr_wc_task for the fields mpd_cd, work_card_no, and revision_no.
How can I write the following SQL Query to run as a Crystal Report?
select a.*
from sr_work_card a
where not exists (select 'x'
from sr_wc_task b
where b.mpd_cd = a.mpd_cd
and b.work_card_no = a.work_card_no
and b.revision_no = a.revision_no)
What I am trying to retrieve are the records from sr_work_card that do not have a matching record in sr_wc_task for the fields mpd_cd, work_card_no, and revision_no.