我有表a,表a中有個欄位tab_no裏面存放很多表如A1,A2,A3,不能直接使用select * from A1來得到這個表的資料,那麼我如何通過表a的tab_no來取得該欄位下的對應的表的資料呢?
存储过程!动态SELECT 吧!
declare @table varchar(20)
select @table = tab_no from a
exec('select * from ' + @table)