i have a table like this :
Name ADDRESS
Toto 123 ...
Toto 456
ToTo 678

I would like to delete 2 last row...please tell me how to
delete its

Answers were Sorted based on User's Feedback



i have a table like this : Name ADDRESS Toto 123 ... Toto 456 ToTo 678 I..

Answer / mithlesh

delete from table_name
where address = '456' and '678'.

Is This Answer Correct ?    10 Yes 4 No

i have a table like this : Name ADDRESS Toto 123 ... Toto 456 ToTo 678 I..

Answer / siri

DELETE FROM TABLE WHERE ADDRESS IN('456','678')

Is This Answer Correct ?    2 Yes 0 No

i have a table like this : Name ADDRESS Toto 123 ... Toto 456 ToTo 678 I..

Answer / prashant shettar

delete from (select rownumber() over() as rowid from tab1 )
where rowid = ( (select count(*) from tab1) - 1)

Is This Answer Correct ?    2 Yes 1 No

i have a table like this : Name ADDRESS Toto 123 ... Toto 456 ToTo 678 I..

Answer / suv

We can use concept of cursor to delete particular row. The
row where the cursor is pointing will get deleted.

Please correct is wrong..

Is This Answer Correct ?    0 Yes 1 No

i have a table like this : Name ADDRESS Toto 123 ... Toto 456 ToTo 678 I..

Answer / vaneesh khurana

I think better to perform this in following 2 queries

1. Select count(WS-COUNT) from TABLE;

2. DELETE FROM TABLE WHERE ROWCOUNT(*) IS WS-COUNT OR
(WS-COUNT-1);

Basically here the first row will give you the record count
and 2nd will delete the last and the 2nd last row.

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More DB2 Interview Questions

How to find primary key of a table in db2?

0 Answers  


Mention data types used in db2 ?

0 Answers  


Before you give the explain statement, what are the prerogatives?

0 Answers  


Can you use max on a char column?

0 Answers  


What is the difference between CS and RR isolation levels?

1 Answers  






How do I delete a column in db2?

0 Answers  


Is it possible to precompile if db2 goes down?

4 Answers   Target,


What is isolation level?

4 Answers  


What are some SQL aggregates and other built-in functions?

2 Answers  


What does a deadlock mean in DB2?

0 Answers  


What is correlation names?

1 Answers  


what's the equivalent Cobol Data type for Decimal(x,y) in DB2? what does the current SQLID register contain?

3 Answers   Cap Gemini, Tech Mahindra,


Categories