通用式: alter table [表名] add [字段名] 字段属性 default 缺省值 default 是可选参数
增加字段: alter table [表名] add 字段名 smallint default 0 增加数字字段,整型,缺省值为0
alter table [表名] add 字段名 text [null] 增加备注型字段,[null]可选参数
alter table [表名] add 字段名 varchar(N) [null] 增加变长文本型字段 大小 为N(1~255)
alter table [表名] add 字段名 char [null] 增加定长文本型字段 大小固定为255
alter table [表名] add 字段名 Datetime default 函数 增加日期型字段,其中 函数 可以是 now(),date()等,表示缺省值
(上面都是最常用的,还有其他的属性,可以参考下面的数据类型描述)
删除字段: alter table [表名] drop 字段名
修改变长文本型字段的大小:alter table [表名] alter 字段名 varchar(N)
删除表: drop table [表名]
Insert最简单形式
INSERT [INTO] targettable[(targetcolumn1[,targetcolumn2])] VALUES(value1[,value2])
insert #famousjaycess values( ‘julius caser‘,‘military leader/dictator‘,-0045, ‘took the roman early retriment program‘ )
Insert创建表时附默认这
create table #famousjaycess2
(
jc varchar (15) DEFAULT ‘‘,
occupation varchar (25) DEFAULT ‘ROCK STAT‘,
becamefamous int default 0 ,
notes text null
)
GO
insert #famousjaycess2 DEFAULT VALUES
Insert 使用查询结果做添加的数据集
insert #famousjaycess3
select * from #famousjaycess
union all
select ‘julius caser‘ ,‘military leader/dictator‘,- 0045,‘took the roman early retriment program‘
Inser 使用存储过程结果集
insert #cui_who
exec sp_who
Update交换两行数据
--变量是在批处理或过程的主体中用 DECLARE 语句声明的,并用 SET 或 SELECT 语句赋值。 游标变量可使用此语句声明,并可用于其他与游标相关的语句。 除非在声明中提供值,否则声明之后所有变量将初始化为 NULL。
declare @swap float
update #samples set @swap=samp1 , samp1 =samp2, samp2=@swap
select * from #samples