SQL (Structured Query Language) (Cont.)

INSERT

INSERT INTO  table-name
  [ ( list-of-column-names ) ]  VALUES ( data-items )

SQL> insert into  student  values (
  2    '1', 'Jones', 'Allan', 2, '555-1234' );

The values of the respective tuple are the data items separated by commas. If new values are to be entered for certain attributes but not for all, the respective columns must be indicated explicitly; the remaining columns are filled with null values.
DELETE
DELETE FROM  table-name [ WHERE  condition ]

SQL> DELETE FROM  student  WHERE  student_id = '2';

UPDATE
UPDATE  table-name  SET  column-name-1 = expression-1
  [, column-name-2 = expression-2 ] ... [ WHERE  condition ]

SQL> UPDATE  student  SET  phone = '777-2415'
  2    WHERE  class = 2;

SELECT


      Never bite the hand that feeds you.