2007年3月15日
摘要: 如何使用iis发布wcf服务 阅读全文
posted @ 2007-03-15 13:54 stswordman 阅读(5521) 评论(7) 推荐(0)
摘要: 1 临时表--创建临时表 数据库重启后表#a1会消失create table #a1(col1 int,col2 int)select * from #a1 --创建临时表 改表只存在与当前的sessioncreate table ##a2(col1 int,col2 int) 2 从两个表中selectcreate table ##b1(col1 int) create table ##b2(col2 int) insert ##b1 values(1)insert ##b1 values(2)insert ##b1 values(3) insert ##b2 values(2)inser 阅读全文
posted @ 2007-03-15 10:35 stswordman 阅读(2669) 评论(0) 推荐(0)