select statement in SQL

The select statement is used to select data from a database.
```
select * from titles;
```
* The distinct is used to return only distinct (different) values.
* The where clause is used to filter records.
* The order by keyword is used to sort the result - set in ascending or descending order.
* The limit keyword is used to specify the number of records to return.