首页 > 代码库 > Mysql之select

Mysql之select

SELECT {*|<字段列表>}    

[    

FROM <表1>,<表2>,…,<表n>    

WHERE <表达式>    

GROUP BY <分组字段>    

HAVING <expression>    

ORDER BY <排序字段>    

LIMIT <num>    

]

Mysql之select