首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

表值函数中不能用If来根据参数返回不同的结果集么?解决思路

2012-02-21 
表值函数中不能用If来根据参数返回不同的结果集么?如题,我分4种情况,一直不行,如果不用If判断就可以通过[

表值函数中不能用If来根据参数返回不同的结果集么?
如题,我分4种情况,一直不行,如果不用If判断就可以通过

[解决办法]
--try
create function fun(@flag int)
returns varchar(10)
as
begin
declare @re varchar(10)
if @flag=1
set @re= 'AA '
else if @flag=2
set @re= 'BB '
else
set @re= 'CC '

return @re
end
[解决办法]
create function fun(@flag int)
returns @re table(i int)
as
begin
if @flag=1
insert into @re select 1
else if @flag=2
insert into @re select 2
else
insert into @re select 3

return
end

热点排行