Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What is the correct syntax to insert a new row into a table named users with columns id, name, email?
users
id
name
email
INSERT INTO (id, name, email) VALUES (1, 'John Doe', '[email protected]');
INSERT INTO users SET id=1, name='John Doe', email='[email protected]';
INSERT INTO users (id, name, email) VALUES (1, 'John Doe', '[email protected]');
INSERT INTO table users (id, name, email) VALUES (1, 'John Doe', '[email protected]');
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!