Universal Database (netDB2) Introductory Guide


Inserting Data Into A Table

When the table is created , it does not contain any data.The table represents the structure of the data. One can insert tuples by using the Insert statement.

Example:
INSERT INTO ACCOUNTS (OWNER_NAME,ACC_NUM,ACC_CODE,OPEN_DATE)
VALUES('SHELLY',28998.67, 56400,'06-08-1979'),
('RICHARD',2345.98,78650,'08-09-1965);

This command basically inserts two tuple values into the table.