当前位置: 代码迷 >> Sql Server >> 关于select into的用法,该怎么处理
  详细解决方案

关于select into的用法,该怎么处理

热度:38   发布时间:2016-04-27 21:07:40.0
关于select into的用法
请教一下:
select   order_num   into   #s   from   orders   where   order_num=1
请问这句的作用是什么,#S表示什么呢???

------解决方案--------------------
#S--临时表#s
into 生成
------解决方案--------------------
select * from #s
  相关解决方案