Answer Posted / sachin borase
select 8 from table fetch first 3 rows only
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
Which command is used to remove all rows from a table?
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.
How to find the number of rows in a db2 table?
what is the role of the cursor in db2?
What is check constraint. Explain with example.
What is db2 plan table?
Define buffer pool.
What is consistency token in db2?
What is the difference between using bind () and rebind () methods of naming class?
Explain about open switch business continuity software?
What is cursor with hold option in db2?
Following a db2 update statement, what is the quickest way to compute the total number of updated rows?
What are db2 tables?
What is commit in db2?
What language is db2 written in?