Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Which is the correct sql statement (Choose all that apply)
Insert into student values(‘Ali’, ‘Abay’, 4);
Insert into student values(Ali, ‘Abay’, 4);
Insert into student(name, surname, gpa) value (‘Ali’, ‘Abay’, ‘4’)
Insert into student(name, surname, gpa) values(‘Ali’, ‘Abay’, 4);
Insert into student(name, surname, gpa) values(Ali, Abay, 4);
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!