INSERT with NULL
sql
1INSERT INTO students (id, name, age, phone)
2VALUES (3, 'Carol', 13, NULL);Explicitly insert NULL for missing data.

1INSERT INTO students (id, name, age, phone)
2VALUES (3, 'Carol', 13, NULL);Explicitly insert NULL for missing data.