sql增删改查语句怎么写1(sql增删改查语句)
大家好,我是小前,我来为大家解答以上问题。sql增删改查语句怎么写1,sql增删改查语句很多人还不知道,现在让我们一起来看看吧!
1、4、说明:创建新表
2、 create table tabname(col1 type1 [not null] [primary key],col2 type2 [not null],..)
3、 根据已有的表创建新表:
4、 A:create table tab_new like tab_old (使用旧表创建新表)
5、 B:create table tab_new as select col1,col2… from tab_old definition only
6、 5、说明:删除新表
7、 drop table tabname
8、 6、说明:增加一个列
9、 Alter table tabname add column col type
10、 注:列增加后将不能删除。DB2中列加上后数据类型也不能改变,唯一能改变的是增加varchar类型的长度。
11、 7、说明:添加主键: Alter table tabname add primary key(col)
12、 说明:删除主键: Alter table tabname drop primary key(col)
13、 8、说明:创建索引:create [unique] index idxname on tabname(col….)
14、 删除索引:drop index idxname on tabname
15、 注:索引是不可更改的,想更改必须删除重新建。
16、 9、说明:创建视图:create view viewname as select statement
17、 删除视图:drop view viewname
18、 10、说明:几个简单的基本的sql语句
19、 选择:select * from table1 where 范围
20、 插入:insert into table1(field1,field2) values(value1,value2)
21、 删除:delete from table1 where 范围
22、 更新:update table1 set field1=value1 where 范围
23、 查找:select * from table1 where field1 like ’%value1%’ (所有包含‘value1’这个模式的字符串)---like的语法很精妙,查资料!
24、 排序:select * from table1 order by field1,field2 [desc]
25、 总数:select count as totalcount from table1
26、 求和:select sum(field1) as sumvalue from table1
27、 平均:select avg(field1) as avgvalue from table1
28、 最大:select max(field1) as maxvalue from table1
29、 最小:select min(field1) as minvalue from table1[separator]
本文到此讲解完毕了,希望对大家有帮助。