List the three SQL commands we need [3]
SELECT [1] FROM [1] WHERE [1]
What symbol means ‘All’ in SQL? [1]
*
What is the command to see all fields from the table ‘users’?
SELECT * from users
What is the command to select the firstname and secondname fields from customers where the first name is ‘Dave’?
SELECT firstname, secondname FROM customers WHERE firstname = ‘Dave’
What is the command to select the username from users where age is greater than 13?
SELECT username FROM users WHERE age > 13