Example for Inserting Data into a table

Example:

Insert data into STUDENT table without explicitly providing column names.



Query:

INSERT INTO STUDENT
VALUES
(    
      4,
      'Dennis',
      'Charle',
      'Demarcus'  ,
      '1000 Coney Island Ave. Brooklyn NY 11230',
      '3022151541'
)


This entry was posted in . Bookmark the permalink.

Leave a reply