SELECT retrieves data from one or more tables — it's the most-used SQL statement. You specify which columns you want and from which table, optionally filtering, sorting, and limiting the results.
Basic SELECT
name, email
users;
users;
name full_name
users;
