Return all columns from a table.
Section: basic selects
Select all columns
sql
sql
SELECT * FROM users;Explanation
Convenient for quick exploration, but explicit column lists are usually better in production queries.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing basic selects