i have a table in sqlserver which has only one column,say name
select * from table_name;
returns
anil
vijay
anil
anil
vishal
anil
mohan
if we want to delete the 5th anil name (through query analyser)
how to do it
if i use newid() function
it always changes.
thank you
