在写数据库命令语句时,我们经常会建一个测试表来试验自己写的语句是否正确,这里可以建一个临时表,用完之后自动删除很方便。顺便也学学临时表的用法。
create table #test
(
id int identity(1,1) not null,
n varchar(50)
)
select * from #test
insert into #test values('sun24')
insert into #test (n)values('yaya222')
drop table #test
(
id int identity(1,1) not null,
n varchar(50)
)
select * from #test
insert into #test values('sun24')
insert into #test (n)values('yaya222')
drop table #test
下面是用replace方法更改表中字段
replace
在“查询分析器”的“公共对象”里面有数据库支持的函数,如有需要的从中找出在去网上查用法即可