当前位置: 代码迷 >> Sql Server >> 求教简单的sql,该怎么处理
  详细解决方案

求教简单的sql,该怎么处理

热度:51   发布时间:2016-04-27 21:09:48.0
求教简单的sql

set   @Note= 's '
declare   @ss   varchar(8000)
set   @ss= '
select   *   from  
'[email protected]+ 'ty '
--   select   @ss
--   exec(@ss)

不用动态sql
我想实现下面的功能

select   *   from     sty
这样写不对
select   *   from  
' '[email protected]+ ' 'ty

------解决方案--------------------
表名是動態的,必須使用動態SQL語句
------解决方案--------------------
不能,只能用 exec或者sp_executesql
------解决方案--------------------
lz

今天正好有个帖子适合你看~:)

http://community.csdn.net/Expert/topic/5451/5451726.xml?temp=.3342859
  相关解决方案