下一站天后

今朝的容颜老于昨晚

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

在写数据库命令语句时,我们经常会建一个测试表来试验自己写的语句是否正确,这里可以建一个临时表,用完之后自动删除很方便。顺便也学学临时表的用法。 

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

 下面是用replace方法更改表中字段

replace

 

在“查询分析器”的“公共对象”里面有数据库支持的函数,如有需要的从中找出在去网上查用法即可

 

posted on 2008-08-20 12:55  孙雅玲  阅读(434)  评论(0编辑  收藏  举报