Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Які запити дозволяють добавити запис в таблицю students?
INSERT INTO students VALUES (4, NULL, 'Surname', NULL);
INSERT INTO students(id, first_name, last_name) VALUES (1, 'Name', 'Surname');
INSERT INTO students(id, first_name) VALUES (2, 'Name');
INSERT INTO students VALUES (3, 'Name', 'Surname', NULL);
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!