不起作用
Create Function MyFunction(@enterpriseId uniqueidentifier)
RETURNS TABLE
AS
if @enterpriseId = 1
begin
//Do someThing
end
else
begin
//Do somethin
end
答案 0 :(得分:2)
这是一个简单的SQL查询还是一个过程?
Select * from documentItem
where CreateDate <= @creatDate
你改变了你的问题???