I am performing deleting action but getting the error
Incorrect syntax near ','
delete from table1a
where (a.col1,a.col2, a.col3,a.col4) not in
(select b.col1,b.col2,b .col3,b.col4
from table2 b)
Here table 1 and table 2 are similar in structure but in diff databases and col1,col2,col3, col4 together form the primary key.
Incorrect syntax near ','
delete from table1a
where (a.col1,a.col2, a.col3,a.col4) not in
(select b.col1,b.col2,b .col3,b.col4
from table2 b)
Here table 1 and table 2 are similar in structure but in diff databases and col1,col2,col3, col4 together form the primary key.
Comment