how to delete perticular row from table
for ex. how you will delete 3rd row from table
please answer
THANKS IN ADVANCE
Answers were Sorted based on User's Feedback
Answer / prashant shettar
delete from (select rownumber() over() as rowid from tab1)
where rowid =3
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / avi
When you are saying row no 3 , means your data is in sorted format and table having the primary key , so find the row no 3 primary key information and then delete it using the where clause with primary value .
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / santhu
i think each row we can identify using ROWID . using ROWID
we can delete the row like fallowing
delete from <table_name> where rowid=3
correct me if i am wrong........
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / dalwinder singh
delete from (SELECT * FROM (SELECT col1,rownumber() over()
as rn from table where col =value) as tr where rn = 3)
| Is This Answer Correct ? | 3 Yes | 5 No |
Answer / ankit
hi
try with key word 'rownum' and 'rowcount'
ex: delete from table where rowcount=3;
correct me if i am wrong
| Is This Answer Correct ? | 3 Yes | 11 No |
If anyone has IBM Certification Dumps pls forward to me & also let me know what are the Certification Codes that are available in DB2
How to resolve the -305 error code in DB2? And also please let me know, how to resolve the db2 error codes.
i have an employment table whch has salary,dept,name? i want salary b/w 1000 to 5000 can anyone pls say the query for ths ?
8 Answers Cap Gemini, CGI, EDS, IBM, Satyam, Wipro,
Can you Average the Characters ?
My sql statement select avg(salary) from emp yields inaccurate results. Why?
What is SPUFI?
can any one provide me the link for the db2 v7 & db2 v8 manual for Z/os? i need to know about the syntax of REORG in both versions & need to know the difference as well
What is difference between *omit and *nopass?
What is an access path?
Explain in brief how does db2 determine what lock-size to use?
What is cursor stability?
What is REORG? When is it used?