Hi
how to delete records which has same id from 2 tables.
In oracle
we can use
delete from t1,t2 where t1.id=1 and t1.id=t2.id
how to do this in sqlserver.
how to delete records which has same id from 2 tables.
In oracle
we can use
delete from t1,t2 where t1.id=1 and t1.id=t2.id
how to do this in sqlserver.
Comment