SELECT All Rows

Retrieve all columns and rows from a table

Query

SQL

SELECT * FROM users;

What each clause does

SELECT * retrieves every column from the table. The asterisk (*) is a wildcard. FROM users specifies the source table.

Related tools

Other SQL examples