select

SQL SELECT Statement

SQL SELECT Statement

The SELECT statement is used to query data from a database. It can select all or specific columns from a table.

Basic Query Example

SELECT first_name, last_name FROM Users;
    

This query selects the first name and last name of all users from the "Users" table.