假设我有一个表格,我必须在不同的合同键下插入合同的描述。
但是在执行的时候,在then附近有一个错误
使用语法集有什么限制吗?
下面是我的 SQL
declare @i int, @j v nvarchar(MAX)
set @i = 1
while (@i<=8)
begin
set @j = case when @i = 1 then 'CR' when @i = 2 then 'Facebook' else 'N/A' end
INSERT INTO CostNature (CNKey, CNNDescription) VALUES (@i , @j );
set @i = @i + 1
end