In my table having 100 Rec. How can I delete the 7th row??
(we don't know what is data inside the table)
Answer Posted / m sharib
delete from table1 where policy_no =(select policy_no from table1 limit 6,1);
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain how can you do the explain of a dynamic sql statement?
What is consistency token in db2?
Mention the various locks that are available in db2.
What is ibm db2 client?
can we view the access paths created by dbrm ? how ? thx
What is null in db2?
Is db2 a mainframe?
SET is the ANSI standard for variable assignment, SELECT is not. SET can only assign one variable at a time, SELECT can make multiple assignments at once. If assigning from a query, SET can only assign a scalar value. If the query returns multiple values/rows then SET will raise an error. SELECT will assign one of the values to the variable and hide the fact that multiple values were returned (so you'd likely never know why something was going wrong elsewhere - have fun troubleshooting that one) When assigning from a query if there is no value returned then SET will assign NULL, where SELECT will not make the assignment at all (so the variable will not be changed from it's previous value) As far as speed differences - there are no direct differences between SET and SELECT. However SELECT's ability to make multiple assignments in one shot does give it a slight speed advantage over SET.
What is ibm db2 database?
What is the purpose of rollback and commit?
What is sqlca?
Which command is used to connect to a database in DB2 ? Give the Syntax.
What is access path in db2?
What's The Percentage Free Space ?
Mention the definition of cobol in varchar field.