摘要:
准备 建表和数据 #建表 create table department( id int, name varchar(20) ); create table employee( id int primary key auto_increment, name varchar(20), sex enum 阅读全文
摘要:
单标查询 单表查询语句 关键字执行的优先级 简单查询 where约束 group by 聚合函数 HAVING过滤 order by 查询排序 LIMIT限制查询的记录数 使用正则表达式查询 单表查询语句 关键字执行的优先级 简单查询 where 约束 where字句中可以使用: 1.比较运算符:> 阅读全文