标签:分组 连接 使用 esc ons 联合查询 主表 联合 order
查询排序order by,正序asc 倒序desc。
分组查询group by,分组查询后筛选使用having;
默认值约束 default;
非空约束not null;注:非空字段必须赋值。唯一约束unique;
主键(非空+唯一)primary key;
自增长zerofill;
外键CONSTRAINT 外键名称 外键(外键字段) REFERENCES 主表(主键)
连接查询进join on
内连接:from 表1 join 表2 on 表1.字段1=表2.字段2;
左连接:from 表1 left join 表2 on 连接条件;
右连接:from 表1 right join 表2 on 连接条件;
子查询 where in;
联合查询:union。
标签:分组 连接 使用 esc ons 联合查询 主表 联合 order
原文地址:https://www.cnblogs.com/xy19961213/p/14891945.html