2
我有一個SP臨時表。變量創建表識別
CREATE TABLE #bclist (
bcastid INT
,userid INT
,etype INT
,articles0 BIGINT
,seq INT identity(1, 1)
)
我也有一個變量@nextseq 我要的是somthingh像下面
CREATE TABLE #bclist (
bcastid INT
,userid INT
,etype INT
,articles0 BIGINT
,seq INT identity(@nextseq, 1)
)
但SQL Server不允許這樣。任何解決方案?
也許你應該張貼您正在試圖解決的 '實際' 的問題;聞起來像一個row_number()解決方案... –