is there any restrictions for unions ?

Answer Posted / srikanth alla

WE CAN'T CODE union IN COBOL-DB2 program

Is This Answer Correct ?    0 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the maximum size of varchar data type in db2?

636


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.

2140


How do I add a column to an existing table in db2?

578


What is explain in db2?

576


Explain the function done by data manager?

847






What is performance tuning db2?

600


What is catalog database in db2?

634


How do I delete a column in db2?

669


What happens in bind step in a db2 program?

558


When the like statement is used?

626


What does db2 plan contain?

567


Why select is not preferred in embedded sql programs?

700


What is sqlca?

606


How do I optimize a query in db2?

602


How would you find out the total number of rows in a db2 table?

570