Example:  Insert data into STUDENT table . 
Structure for Student table can be found in the below path:
STUDNET Table
Query:
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 
      '6023458976'
)
 
