In my table having 100 Rec. How can I delete the 7th row??
(we don't know what is data inside the table)
Answers were Sorted based on User's Feedback
Answer / harsha
Use DELETE FROM TabName
The above command will delete all rows of the table with
out deleting the table.
Now if we want to delete 7th row and we don't know the
actual data in that row, then in that case we need to
create a new temporary result table, that contains only one
desired record which you want to delete.
Here are the steps.
1 Select only 7 row data.
2 Sort it in descending order(ORDER BY calue)
3 Select only first row
4 Now you have a result table with only 1 and desired record
Is This Answer Correct ? | 4 Yes | 1 No |
Answer / mdv
DELETE FROM TABLE_NAME
WHERE RID(TABLE_NAME) = 7 ;
Works DB2 (V9 Onwards)
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / giri reddy
use cursor to find out the primary key column value in that
row, then delete tha row using the primary key
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / rajeev
In this scenario RRN will be useful.
DELETE FROM <FILENAME> F1 WHERE RRN(F1) = 7
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / tim v
Are we talking the 7th row as sorted by key or 7th physical row? Since the rows aren't normally physically stored in order, I'd have to go with the latter.
Everyone seems to assume there is a PK on the table, but yet we don't know anything about the data... Again, this points to 7th physical row.
I'd go with the delete where RID(table) = 7 option since this assumes the 7th row inserted based on position and not value.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / m sharib
delete from table1 where policy_no =(select policy_no from table1 limit 6,1);
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ajay
we need to know atleast 1 column data, else we can not delete data from table.
Is This Answer Correct ? | 2 Yes | 4 No |
Answer / sherman_li
Actually, you don't need to delete this data, just move
foward the remaining data(from 8th to 100th), for example,
8th -> 7th
9th -> 8th
...
100th -> 99th
hope this is what you want
Is This Answer Correct ? | 0 Yes | 11 No |
What is a composite index and how does it differ from a multiple index?
What is a base table?
What is table space in db2?
Hi, i would like to start a new carrier in DB2 DBA.Which and what all step should i have to take..?
Mention and explain the contention situations caused by locks?
What is the difference between spufi and qmf?
What are the abend codes occour in ur latest PROJECT in DB2
What is db2 bind process?
what is different three logs in DB2?
If we keep the DCLGEN structure for a table in a copybook and include it in the COBOL program using the COPY statement, will there be any impact during compilation or at any stage of program execution?
Which one allows duplicate values Union or Union All ?
What are the functions of Bind?