What is a result table?



What is a result table?..

Answer / s

Result table contains rows DB2 selects from one or more
base tables.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More DB2 Interview Questions

How to connect to db2 database from windows command line?

0 Answers  


What is dclgen (declaration generator)?

0 Answers  


What is the physical storage length of date data type?

0 Answers  


What are the bind parameters ibm db2?

0 Answers  


Is db2 a programming language?

0 Answers  






What is the use of COMMAREA ?Minimum how much data we can pass from it?

7 Answers   Cap Gemini,


why we create view.

5 Answers  


what is db2 restart?

0 Answers  


WHAT IS MEANT BY COMMIT COMMAND?

7 Answers   Wipro,


What do you mean by between and in? Is between inclusive of specified range values?

0 Answers  


what are extents?

5 Answers  


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.

0 Answers  


Categories