sql select
Used to select data from a database, which is then returned in a results set. Example 1: Selects all columns from all users. SELECT * FROM users; Example 2: Selects the first_name and surname columns from all users.xx SELECT first_name, surname FROM users;