The SELECT statement is used to query data from a database. It can select all or specific columns from a table.
SELECT
SELECT first_name, last_name FROM Users;
This query selects the first name and last name of all users from the "Users" table.