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 |
I have a subprogram B calling from mainprogram A.I have opened a cursor in A ,Can i fetch the same cursor in subprogram B , If yes , Please explain the reason?
What is package in db2 mainframe?
Name the various locking levels available?
if one db2 pgm calls another db2 pgm. how many plans do we need. what r the steps involved..
why we go for SPUFI for creating tables or for sql queries?
can all users have the privilage to use the sql statement select * (dml)?
How do I start db2 in windows?
How to find the number of rows in a db2 table?
What is db2 plan table?
How we create a tables in db2,what is the process/syntax to create a table with example plz?
What is the use of db2 optimizer?
How do you concatenate the firstname and lastname from emp table to give a complete name?