1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
------------------------------ Commands Entered ------------------------------
describe table tab4;
------------------------------------------------------------------------------
describe table tab4
Data type Column
Column name schema Data type name Length Scale Nulls
------------------------------- --------- ------------------- ---------- ----- ------
C1 SYSIBM CHARACTER 4 0 Yes
C2 SYSIBM INTEGER 4 0 Yes
2 record(s) selected.
UPDATE TAB4 SET (C1,C2)=(NULL,0);
------------------------------------------------------------------------------
UPDATE TAB4 SET (C1,C2)=(NULL,0)
DB21034E The command was processed as an SQL statement because it was not a
valid Command Line Processor command. During SQL processing it returned:
SQL0206N "NULL" is not valid in the context where it is used.
SQLSTATE=42703 |