hi, how can i do to select those invoices that their numbers parts have rate "tlcan" and dont have a valid "tlcan" certificate of origin for the invoice date
select claused have 3 tables and a just want those rows that not meet the join condition
here its my code
select invoice, date, part, line from
certorig inner join impmov on part=co_part inner join impfact on invoice=invoicem
and date between co_datei and co_datef and rate='TLCAN'
and co_trat='TLCAN'
select claused have 3 tables and a just want those rows that not meet the join condition
here its my code
select invoice, date, part, line from
certorig inner join impmov on part=co_part inner join impfact on invoice=invoicem
and date between co_datei and co_datef and rate='TLCAN'
and co_trat='TLCAN'