- 论坛徽章:
- 0
|
SET 也可以用于SQL PL, 找了个例子:
While the SQL PL can command a variety of SQL commands, a SELECT statement will not be returned to the calling program (either CLP or an application) as a open cursor that records can be fetched from. From a user perspective, issuing a SELECT statement within a BEGIN ATOMIC block will not return a result set, while outside of the block it will. For instance, if the SQL PL in figure 15-29 was modified to place the SELECT statement outside the control block, no result set would be returned when you issued the DB2 command (Figure 15-31):
Figure 15-31 SQL PL with no output
- CONNECT TO DB2CERT@
- DROP TABLE TEST@
- CREATE TABLE TEST (NUMBER INT)@
- BEGIN ATOMIC
- DECLARE I INT DEFAULT 1;
- WHILE I <= 10 DO
- INSERT INTO TEST VALUES(I);
- SET I = I + 1;
- END WHILE;
- SELECT * FROM TEST;
- END@
- QUIT@
复制代码
Normally you would use SQL PL blocks to apply complex logic to INSERT, UPDATE, and DELETE statements. If you do need to see the results of these statements, you must issue the SELECT outside the scope of the SQL PL block. However, you can use a SELECT statement within an SQL PL block to calculate values, find values, or for any other purpose other than to display results.
[ 本帖最后由 lklgdkp 于 2006-11-7 21:48 编辑 ] |
|