I created a sub query and executed..but it's not throwing up an error.
table1: col1,col2,col3
table2 : r1,r2,r3
table 1 and table 2 column names are completely different.
I created a query like
Select col1 from table1 where col1 not in (select col1 from table2) group by
col1.
We know that col1 is not in the table2.but the output in coming just the
name col1.it’s now throwing up and error like “col1 is invalid in table2”
I am so confused…any help will be appreciated