关于临时表的个人经验
摘要:临时表有两种,一种是全局的,用"##"开头,当前用同一帐号登录的所有会话可见,如:##temptable;还有一种是局部,只用当前会话可见,用"#"开头,如:#temptable;两种表其实是相当相像的;/* making ##temp table*/select * into ##temptable from table/* making #temp table*/select * into #...
阅读全文
posted @
2005-11-04 10:06
microtea
阅读(299)
推荐(0)