SQL INSERT Statement: Adding a New Student Record
This SQL statement is used to insert a new record into the STUDENT table. The record contains the following values for each column:
- '001' for the student ID
- '张三' for the student name
- '男' for the gender
- '1999-01-01' for the date of birth
- '计算机科学与技术' for the major
The resulting SQL statement is:
INSERT INTO STUDENT VALUES('001','张三', '男', '1999-01-01', '计算机科学与技术')
原文地址: https://www.cveoy.top/t/topic/kz4n 著作权归作者所有。请勿转载和采集!