标签:group by 基础 选项 插入数据 value where 条件 val let
数据库的操作(crud):C(create) R(read) U(update) D(delete)
插入数据: insert into 表名[字段列表] values[值列表]
蠕虫复制(在已有数据的基础上,将原来的数据复制,插入到相对应的表中):
Insert into 表名 select *|字段列表 from 表名
主键重复:
修改数据:update 表名 set 字段1=值1,字段2=值2……where条件;
删除数据:delete from 表名 [where条件] [order by 字段名 asc|desc][limit 数据量]
查询数据:select * |字段列表 from 表名 [where子句];
select选项:系统在查询到相关数据之后,如何显示
虚拟表:查询语句的比较完整的语法 select [select选项] *|字段列表 [as 字段别名] from 数据源 [where子句][group by子句][having子句][order by子句][limit子句];
标签:group by 基础 选项 插入数据 value where 条件 val let
原文地址:http://www.cnblogs.com/phpindex/p/6105818.html