MySQL: DQL query table records

1. Syntax:
select
field list
from
indicates the list
where
condition list
group by
grouping field
having
grouping condition
order by
sorting
limit
paging limit
2. Basic query
① multiple field query
select field name 1, field name 2...from table name
Note : If you query all fields, you can use to replace the field list





Guess you like

Origin blog.csdn.net/weixin_45688342/article/details/108638955