The basic operation of the database (2)-use SQL statements to insert, modify and delete table data

The format of the original table is:
Insert picture description here
This is a student information table (table name: student), which includes student ID, name, gender, hometown, date of birth, department number, major code, class number, student admission time, and student family Residential address, student contact phone number (corresponding in turn), a total of 11 lines.
1. Insert
now and add data to the table: 13040401 (student number), Zhang San (name), female (gender), Shandong (hometown), 1994-01-05 (date of birth), IS (department number), 1 (Professional code), 1 (class number), 2009-09-01 (entry time), 2666 Xifeng Road (home address), 13523367881 (contact number)
format:

INSERT INTO [表格名] VALUES 

Guess you like

Origin blog.csdn.net/m0_46977476/article/details/115263626