<数据定义语言DDL>
一. create TABLE tableName 创建表
二. alter TABLE tableName 修改表
三. drop TBALE tableName 删除表
<数据控制语言DCL>
GRANT/REVOKE
<数据操纵语言DML>
一. insert INTO tableName(,,,) values(,,,); 插入数据(增)
二. update tableName SET =, =, =; 更新数据(改)
三. delete FROM tableName; 删除数据(删)
<数据查询语言DQL>
一. select ... FROM tableName(查)
1. select语句
select id,productId,apiId from SureMesure limit 1 \G;
注意点:字段之间用逗号隔开,limit用于限制显示记录数量,\G用于格式化输出
2.select ...group by...having...
select apiId, AVG(execTime) from apisUsabilityTestHistory where execTime<>0 group by apiId having AVG(execTime)>5;
注意点:group by 用于分组,AVG(execTime)组内求平均值, having 用于过滤组结果。分组后求各个组的平均值。
3. 条件判断null,前面不能用=,!=,<>。
而要用 is null 或者is not null
4.没有默认值的空字段
='';
5.双重select
select * from t_order where order_id in (select distinct order_id from t_order_flow where sync_id=0);