Answer Posted / mahyn
select * from tablename
order by primary_key desc
fetch first 5 rows only
with ur;
can be one way...
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Mention the definition of cobol in varchar field.
What is bind package and plan in db2?
What is the meaning concurrency in the db2 database?
What does reorg do 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 use of db2?
What is temporal table in db2?
How does a cursor work?
In an sql table that is embedded, what is the procedure to retrieve rows that are part of a db2 table?
have 3 tables table1, table2 and table3 which contains employee information. table1 is master table, table2 contains emp details like emp no and so on, table 3 contains emp salary. so if any emp leave company between 25th - 30th of every month it has to get updated in tables. but it is not getting updated. What is the reason.
What is a collection in db2?
How can deadlocks be resolved?
What is the difference between spufi and qmf?
What is host variable in db2 cobol?
How is a typical db2 batch pgm executed?