What is ibm db2 client?
No Answer is Posted For this Question
Be the First to Post Answer
Define declaration generator (dclgen).
In my table having 100 Rec. How can I delete the 7th row?? (we don't know what is data inside the 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.
Can All Users Have The Privilege To Use The SQL Statement Select (DML)?
How Plan is created while executing the query using SPUFI?
I have a table which has thousand of records i want to fetch only record num 100 to record num 200. Write a query that satisfies this criteria.(Cant use any keys) Anyone please reply ASAP!
17 Answers KNIT, Tech Mahindra,
What is the cobol picture clause of the db2 data types date, time, timestamp?
My sql statement select avg(salary) from emp yields inaccurate results. Why?
What is meant by isolation level?
OUTER JOINS USED TO GET MATCHING AND NONMATCHING ROWS FORM 2 OR MORE TABLES BASED ON COLUMNS. SIMPLE JOINS ALSO DO THE SAME THEN WHAT IS THE USE OF OUTER JOINS.
What is the purpose of the DSNC transaction ?
How to create a table using embedded sql?