Related Documentation Download this Manual
PDF (US Ltr) - 39.8Mb
PDF (A4) - 39.9Mb
Man Pages (TGZ) - 257.9Kb
Man Pages (Zip) - 364.9Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb


MySQL 8.4 Reference Manual  /  ...  /  Retrieving Information from a Table

5.3.4 从表中检索信息

SELECT 语句用于从表中检索信息。语句的通用形式为:

SELECT what_to_select
FROM which_table
WHERE conditions_to_satisfy;

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