How to insert more than one record using insert?
Answer Posted / flando
Sandeep Kumar had it close. I found the answer here:
http://publib.boulder.ibm.com/infocenter/db2luw/v8/index.jsp
?topic=/com.ibm.db2.udb.doc/admin/r0000970.htm
insert into tablename (col1, col2)
values (valu1, valu2), (valu1, valu2), (valu1, valu2)
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
Explain the contents that are a part of dclgen.
What is the difference between drop table and delete table?
can we view the access paths created by dbrm ? how ? thx
Where do you specify them?
How to compare data between two tables 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.
List out the three types of page locks that can be held.
What are packages in db2?
What is the use of value function?
What is db2 and what is the use of db2 optimizer?
Is db2 relational database?
What is meant by dclgen?
How to resolve deadlock issue
What is the use of dclgen in db2?
What is sqlca’s maximum length?