查詢資料 由于是拼接的sql語句 需要用exec執行 但是需要在資料庫中獲得 執行的結果。
在網上找到解決方案: 建立臨時表 解決。
代碼:
Create Table #temp(id int)
insert into #temp exec('select id from tbl')
declare @TempID int
select @TempID =ID from #temp
drop table #temp
print @TempID
做個記錄,友善以後檢視。
查詢資料 由于是拼接的sql語句 需要用exec執行 但是需要在資料庫中獲得 執行的結果。
在網上找到解決方案: 建立臨時表 解決。
代碼:
Create Table #temp(id int)
insert into #temp exec('select id from tbl')
declare @TempID int
select @TempID =ID from #temp
drop table #temp
print @TempID
做個記錄,友善以後檢視。