Insert data Examples

Example:  Insert data into STUDENT table .

Structure for Student table can be found in the below path:
STUDNET Table


Query:

INSERT INTO STUDENT
(
      STUDENT_ID,
      FIRST_NAME,
      LAST_NAME, 
      FATHE_NAME,
      ADDR  ,    
      PHONE
)
VALUES
(    
      1,
      'JAMES',
      'CAMERO',
      'AARON'     ,
      '19 Quaker Ridge Rd.,Bethel CT 06801',
      '6023458976'
)

This entry was posted in . Bookmark the permalink.

Leave a reply