3.3.4 从 table 中检索信息

SELECT语句用于从 table 中提取信息。该语句的一般形式为:

SELECT what_to_select
FROM which_table
WHERE conditions_to_satisfy;
首页