标签:增删改 数据 HERE serve pre 集合 class insert having
--增删改查
--增
insert into 表名(列名) value(值列表)
--删
delect from 表名 where 条件
--改
update 表名 set 列名=值1,列名2=值2 where 条件
--查
select 列名1,列名2,...from 表名
where 条件
group by 列名
having 集合函数条件
order by 列名
标签:增删改 数据 HERE serve pre 集合 class insert having
原文地址:https://www.cnblogs.com/47Nine/p/10058008.html