When poll is active respond at
Send docbrick to 22333
Title logo

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