在SQL Server中如何用通配符搜索TEXT栏
2007-11-11 11:41:08 来源:WEB开发网核心提示: select distinct * into #table_name from table_namedelete from table_nameselect * into table_name from #table_namedrop table #table_name与此相关的是“select into”选项,可以
select distinct * into #table_name from table_name
delete from table_name
select * into table_name from #table_name
drop table #table_name
与此相关的是“select into”选项,可以在数据库属性
对话框中,勾起来此项,或者在Query Analyzer中执行
execute sp_dboption 'db_name','select into','true'
开启。默认值是关闭的。
更多精彩
赞助商链接