8 查询数据 8.1 基本查询语句 select语句的基本格式是: select {* | 字段1[,字段2,...]} [ from 表1,表2... [where 表达式] [group by <分组条件>] [having 条件表达式 [{操作 表达式}...]] [order by [排序条件]] [limit 行数 [offset 偏移量]] ] select [字段1,字段2,...,字段n] from [表或视图] where [查询条件]; 先建表并插入数据: create t…