我已将我的功能简化为以下内容:
create function [dbo].[UserSuperTeams](@ProjectId int)
returns table
as
return
if @ProjectId=0
begin
select TeamId from TblTeam t
union
select 0 as TeamId
end
else
begin
select t.TeamId from TblTeam t
union
select 1 as TeamId
end;
go
我不能让它工作..似乎我有一些语法错误,但我不知道如何让它工作..有什么想法吗?