Oracle's Analyze Table equivalent ?
Hi,
In Oracle, the below query is valid :
insert into test(sno,sno1) values(1,2) returning id into val_ret;
// The above query in Oracle returns the affected row id's to the PL/SQL or host vriable(val_ret)
Is there any equivalent for the above in SQL Server ?
Please advice,
Thanks,
Smitha
|