Related Documentation Download this Manual
PDF (US Ltr) - 40.8Mb
PDF (A4) - 40.9Mb
Man Pages (TGZ) - 294.0Kb
Man Pages (Zip) - 409.0Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb
Excerpts from this Manual

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

5.3.4 从表中检索信息

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

SELECT what_to_select
FROM which_table
WHERE conditions_to_satisfy;

what_to_select 指示您想要看到什么。这可以是一个列的列表,或者 * 以指示 所有列。 which_table 指示您要从哪个表中检索数据。 WHERE 子句是可选的。如果它存在, conditions_to_satisfy 指示一或多个条件,行必须满足这些条件以便检索。