如何从while循环
我的循环创建sql server cte 像这样
declare @ind as int
declare @code as nvarchar
set @ind = 0
while @ind < 884
begin
select @ind = @ind + 1
--here execute Procedure
--and set return value to variable
set @code = cast (@ind as nvarchar)
end
Run Code Online (Sandbox Code Playgroud) 我创建了 SQL Server 查询并有带记录的普通表,另一方面有一个带记录的临时表,该表不为空,所有字段都没有任何冲突要加入
可以加入这两个不同类型的表吗?
SELECT NormalTable.Entityname FROM NormalTable LEFT JOIN
#Temp tmp ON tmp.joinID = NormalTable.joinID
Run Code Online (Sandbox Code Playgroud) 为asp.net应用程序创建安装程序的最佳工具是什么?我的目标是: