Y
yuvalbra
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 )
table1.prod_name build as a sting that include 'S' and string after
it (Like S32A48)
table2.prod_name build as a sting that the string after it (Like
32A48)
sample:
table1.prod_name :
S455AA
S65482N
S9999
table2.prod_name :
13A222
65482N
9999
Output:
S65482N
S9999
B.R
yuvi
with this condition:
(prod_name exist in table1 and not in table2.prod_name )
table1.prod_name build as a sting that include 'S' and string after
it (Like S32A48)
table2.prod_name build as a sting that the string after it (Like
32A48)
sample:
table1.prod_name :
S455AA
S65482N
S9999
table2.prod_name :
13A222
65482N
9999
Output:
S65482N
S9999
B.R
yuvi