SQL – USE Keyword
The USE keyword specifies the database you intend to work with. The statement is often made when starting work on or switching to a particular database.
The USE keyword specifies the database you intend to work with. The statement is often made when starting work on or switching to a particular database.
The VIEW keyword is used to CREATE a virtual table based on the result set of an SQL statement.
The WHERE keyword filters a result set to include only records that fulfill a specified condition or set of conditions.
This is a quick reference list of SQL keywords and how they are used to write SQL statements.
A typical SELECT statement will include WHERE, ORDER BY, and LIMIT keywords to retrieve only the rows that apply.