Loading…
SELECT * retrieves ALL columns, even ones you don't need:
Always specify the exact columns you need:
-- Instead of: SELECT * FROM users
SELECT id, username, email FROM users
You need to create a user list showing only:
Write an efficient query using only these columns (not SELECT *).
Downloading SQL engine… (one-time)
This runs entirely in your browser and is cached for next time.