1.创建数据库
2.删除数据库
3.备份sql server
创建备份数据的device
use master
exec sp_addumpdevice '名称','新的名称','路径'
开始备份
backup database pubs to 新的名称
4.创建表
create table 表名(列名1 类型,列名2 类型)
5.根据已有表创建新表
create table 新表名称 as select 列名 from 旧表名称 defintion only
6. 增加一个列
7.添加主键
alter table 表名称 add primary key(列名称)
8.自增id属性从1开始每次加1
identity (1,1)
9.创建索引
create index 索引名 on 表名(列名)
10.删除索引
drop index idx_name
11.CTE查询
1
12.case when的用法(修改表名称id,当 t 的名字不为空,则还是 t 的名字,否则变为表名称的名字,把被修改的数据输出到临时表)
'' then t.id else pn.id end
output deleted.id into 临时表
from 表名称 pn with(nolock)
join #temp t
13.查询、插入、删除、求和、平均、最大值
sql;">
select * from table
insert into new_table(id,name)values(1,'张三')
delete from table where 范围
select sum(field1) as sumvalue from table1
select avg (field1) as avgvalue from table1
select max(field1) as maxvalue from table1
原文链接:https://www.f2er.com/mssql/62916.html