When poll is active respond at
PollEv.com​/docbrick
Send
docbrick
to
22333
Given the games table, what would be the SQL statement that could find the name and platform of alll games with a rating of E for everyone?
0
FROM Games SELECT * WHERE rating LIKE 'E';
0%
0
FROM name, platform SELECT Games WHERE rating='E';
0%
0
WHERE rating='E' SELECT name, platform FROM Games;
0%
0
SELECT name, platform FROM Games WHERE rating = 'E';
0%
0
SELECT Games WHERE rating = 'E';
0%
0
See more