数据库sql语句有哪些 数据库sql语句大全


数据库sql句子有哪些?让我们一起来看看:
sql有很多句子,比较基本sql语句有:
选择:select * from table1 where 范围
插入:Insert into table1(field1,field2) values(value1,value2)
删除:delete from table1 where 范围
更新:update table1 set field1=value1 where 范围
查找:select * from table1 where field1 like ’%value1%’
排序:select * from table1 order by field1,field2 [desc]
总数:select count as totalcount from table1
求和:select sum(field1) as sumvalue from table1
平均:select avg(field1) as avgvalue from table1
最大:select max(field1) as maxvalue from table1
最小:select min(field1) as minvalue from table1
当然还有别的sql具体介绍如下:
若是备份sql server
1、 创建和备份数据device,示例代码为:
USE Master
EXEC sp_addumpdevice 'disk','testback','c:mssql7backupMyNwind_1.dat'
2、示例代码为:开始和备份:
BACKUP DATABASE pubs TO testBack
若创建新表
示例代码为:
create table tabname(col1 type1 [Not null] [primary key],col2 type2 [not null],..)
根据现有表创建新表
示例代码为:
A:create table tab_new like tab_old (用旧表创建新表)
B:create table tab_new as select col1,col2… from tab_old definition only
若删除新表
示例代码为:
drop table tabname
以上是小编的分享,希望对大家有所帮助 。
【数据库sql语句有哪些 数据库sql语句大全】