+ 1
This command isn't run correctly đ
FROM video WHERE price > 20 SELECT title, category
2 Answers
+ 5
SELECT goes before FROM ...
You misplaced them ...
SELECT title, category
FROM video
WHERE price > 20
+ 1
That command is wrong
Select should be at first place.
Go and read again about SQL syntaxes