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 / raghu
delete count(*) = 7 from tbname
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Is db2 a database?
What is check constraint in db2?
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 the default page size of buffer pools?
What is the use of value function?
What is a collection in db2?
How to find the maximum value in a column in the db2 database?
What is null in db2?
How can the duplicate values be eliminated from db2 select?
What are the uses of db2 optimizer?
Explain the function done by data manager?
What is cascading rollback?
How do I delete a column in db2?
What is data manager?
What is a dbrm in db2?