SELECT 语句用于从表中检索信息。语句的通用形式为:
SELECT what_to_select FROM which_table WHERE conditions_to_satisfy;
what_to_select 表示您想要看到的内容。这可以是一个列的列表,或者 * 表示“所有列”。 which_table 表示您想要从中检索数据的表。WHERE 子句是可选的。如果它存在, conditions_to_satisfy 指定了一个或多个条件,行必须满足这些条件才能被检索。
what_to_select
*
which_table
conditions_to_satisfy