SQL lesson2 summary

SELECT is the clause you use every time you want to query information from a database.
WHERE is a popular command that lets you filter the results of the query based on conditions that you specify.
LIKE and BETWEEN are special operators that can be used in a WHEREclause
AND and OR are special operators that you can use with WHERE to filter the query on two or more conditions.
ORDER BY lets you sort the results of the query in either ascending or descending order.
LIMIT lets you specify the maximum number of rows that the query will return. This is especially important in large tables that have thousands or even millions of rows.
Learn SQL

SELECT とはデータベースから情報を照会するときに使用する構文である。
WHERE とは照会したデータから特定の条件でフィルターをかける人気のあるコマンドである。
LIKE and BETWEEN とはWHERE構文で使用できる演算子である。
AND and OR 二つ以上の条件でクエリにフィルタをかけることが出来るWHERE構文とともに使用できる特別な演算子である
ORDER BY 照会した結果を昇順降順でソートすることが出来る。
LIMIT クエリが返す行の最大値を指定することが出来る。これは数千、数百万と行を持つ大きなテーブルにとってとても重要である。

演算子(えんざんし、英: operator symbol, operator name)は、各種の演算をあらわす記号・符牒のことである。 構文論的には演算と演算子は区別されるべきものだが、誤解の恐れのない場合には、しばしば演算子とそれが表す演算自体とを(意図的に)混同して使用する例が見受けられる。
演算子 – Wikipediaよりhttps://ja.wikipedia.org/wiki/演算子