Posted by Roy Harvey on 06/20/07 09:48
SELECT prod_name
FROM table1 as A
WHERE NOT EXISTS
(select * from table2 as B
where A.prod_name = B.prod_name)
AND NOT EXISTS
(select * from table2 as C
where A.prod_name = 'S' + C.prod_name)
Roy Harvey
Beacon Falls, CT
On Wed, 20 Jun 2007 01:28:26 -0700, yuval <yuvalbra@gmail.com> wrote:
>I need to find the rows that exist in one table but not in the other
>with this condition:
>
>(prod_name exist in table1 and not in table2.prod_name ) AND
>
>
>(prod_name exist in table1 and not in table2.'S'+prod_name )
>
>
>explanation:
>i want to know if the product not exit and if the combination of the
>charachter "S" with the product Name also not exist at the other
>table
>
>
>B.R
>yuvi
Navigation:
[Reply to this message]
|