摘要:
#from——where——group by——having——select——distinct——order by——limit 代码块 select * from student where class='ec14' group by gender having age>18 order by 阅读全文
摘要:
#1 多表查询:创建一个部门表和员工表并插入数据 代码块 use company; #创建部门表 CREATE TABLE department ( id int PRIMARY key auto_increment, dep_name varchar(10) not null ); #创建员工表 阅读全文
摘要:
1 约束种类 约束名 | 约束关键字 :-:|:-: 主键|primary key 唯一|unique 非空|not null 外键|foreign key 检查约束|mysql不支持 2 主键约束 通常不使用业务字段(身份证,学号)作为主键,单独使用一个id作为主键,可以没意义,只要唯一,非空就行 阅读全文
摘要:
1 排序 查询学生,先按年龄升序,再按照成绩降序 select * from student order by age asc,score desc; 2 聚合函数 查询学生总人数 select count(*) as 总人数 from student; 如果某一位置为null,可以使用IFNULL 阅读全文