2010-03-02 36 views
1

我试图让下面的工作中:试图用一个case语句光标

declare @ActTable as varchar(1000) 
declare @cPK as VarChar(100) 
declare @SQL as nvarchar(2000) 
declare @FK as VarChar(100) 
declare @FKRef as VarChar(200) 
declare @TblRef as varchar (100) 


create table #temp (
M2MTable varchar(50), 
PK varchar (100), 
FK Varchar(100), 
FKRefTable Varchar(50)) 
insert into #temp 
select 'slcdpm' , 'fcustno', '','' union all 
select 'somast' , 'fsono', 'fcustno','slcdpm' union all 
select 'soitem' , 'fsono,finumber', 'fsono','somast' union all 
select 'sorels', 'fsono,finumber,frelease', 'fsono,finumber','soitem' union all 
select 'qtmast', 'fquoteno', 'fcustno', 'slcdpm' union all 
select 'qtitem' , 'fquoteno', 'fquoteno','qtmast' union all 
select 'armast', 'fcinvoice','fcustno','scldpm' union all 
select 'aritem','fcinvoice,fitem','fcinvoice','armast' union all 
select 'apvend', 'fvendno','','' union all 
select 'apmast','fvendno,fcinvoice','fvendno','apvend'union all 
--select 'apitem','fvendno,fcinvoice,union all 
select 'pomast','fpono','fvendno','apvend'union all 
select 'poitem', 'fpono,fitemno','fpono','pomast' union all 
select 'shmast', 'fshipno','fsokey','sorels'    union all 
select 'shitem','fshipno,fitemno','fshipno','shmast'  --   union all 


declare M2M_AddFK cursor for select M2MTable,FK,FKRefTable from #temp 
open M2M_AddFK 
fetch next from M2M_AddFK into @ActTable,@FK,@TblRef 
while @@FETCH_STATUS = 0 
Begin 

case 
when @FK <> ''then Set @SQL = N'alter table dbo.'+ @ActTable + ' ADD FOREIGN KEY (' + @FK + ') References DBO.' + @TblRef + '(' + @FK + ')' 
Print @SQL 
fetch next from M2M_AddFK into @ActTable,@FK,@TblRef 
else 


fetch next from M2M_AddFK into @ActTable,@FK,@TblRef 
end 

end 

close M2M_AddFK 
deallocate M2M_AddFK 

drop table #temp 

请通知的情况下声明:

case 
when @FK <> ''then Set @SQL = N'alter table dbo.'+ @ActTable + ' ADD FOREIGN KEY (' + @FK + ') References DBO.' + @TblRef + '(' + @FK + ')' 
Print @SQL 
fetch next from M2M_AddFK into @ActTable,@FK,@TblRef 
else 


fetch next from M2M_AddFK into @ActTable,@FK,@TblRef 
end 

我只是想创建ALTER TABLE语句当有@FK值时,如果是''则跳过它。

有人能指出我正确的方向吗?

回答

5

您必须简化如果否则声明。

此外,格式化代码一点,将使其更容易阅读X-)

while @@FETCH_STATUS = 0 
Begin 

    IF @FK <> '' 
    BEGIN 
     Set @SQL = N'alter table dbo.'+ @ActTable + ' ADD FOREIGN KEY (' + @FK + ') References DBO.' + @TblRef + '(' + @FK + ')' 
     Print @SQL 
     fetch next from M2M_AddFK into @ActTable,@FK,@TblRef 
    END 
    ELSE 
    BEGIN 
     fetch next from M2M_AddFK into @ActTable,@FK,@TblRef 
    end 
end 

使您的整个语句看起来像更换WHILE

declare @ActTable as varchar(1000) 
declare @cPK as VarChar(100) 
declare @SQL as nvarchar(2000) 
declare @FK as VarChar(100) 
declare @FKRef as VarChar(200) 
declare @TblRef as varchar (100) 


create table #temp ( 
M2MTable varchar(50), 
PK varchar (100), 
FK Varchar(100), 
FKRefTable Varchar(50)) 

insert into #temp 
select 'slcdpm' , 'fcustno', '','' union all 
select 'somast' , 'fsono', 'fcustno','slcdpm' union all 
select 'soitem' , 'fsono,finumber', 'fsono','somast' union all 
select 'sorels', 'fsono,finumber,frelease', 'fsono,finumber','soitem' union all 
select 'qtmast', 'fquoteno', 'fcustno', 'slcdpm' union all 
select 'qtitem' , 'fquoteno', 'fquoteno','qtmast' union all 
select 'armast', 'fcinvoice','fcustno','scldpm' union all 
select 'aritem','fcinvoice,fitem','fcinvoice','armast' union all 
select 'apvend', 'fvendno','','' union all 
select 'apmast','fvendno,fcinvoice','fvendno','apvend'union all 
--select 'apitem','fvendno,fcinvoice,union all 
select 'pomast','fpono','fvendno','apvend'union all 
select 'poitem', 'fpono,fitemno','fpono','pomast' union all 
select 'shmast', 'fshipno','fsokey','sorels'    union all 
select 'shitem','fshipno,fitemno','fshipno','shmast'  --   union all 


declare M2M_AddFK cursor for select M2MTable,FK,FKRefTable from #temp 

open M2M_AddFK 
fetch next from M2M_AddFK into @ActTable,@FK,@TblRef 
while @@FETCH_STATUS = 0 
Begin 

    IF @FK <> '' 
    BEGIN 
     Set @SQL = N'alter table dbo.'+ @ActTable + ' ADD FOREIGN KEY (' + @FK + ') References DBO.' + @TblRef + '(' + @FK + ')' 
     Print @SQL 
     fetch next from M2M_AddFK into @ActTable,@FK,@TblRef 
    END 
    ELSE 
    BEGIN 
     fetch next from M2M_AddFK into @ActTable,@FK,@TblRef 
    end 
end 

close M2M_AddFK 
deallocate M2M_AddFK 

drop table #temp 
+2

我想删除ELSE,并且只有一次获取IF后 –