sql >> Databáze >  >> RDS >> Sqlserver

vrátit pouze poslední vybrané výsledky z uložené procedury

Použijte proměnnou tabulky:

create procedure xxxSearch @a nvarchar(80), @b nvarchar(80)...
as 
begin
  DECLARE @res TABLE(...)
  INSERT INTO @res(...)
  select whatever 
    from MyTable t
    where ((@a is null and t.a is null) or (@a = t.a)) and
          ((@b is null and t.b is null) or (@b = t.b))...

    if @@ROWCOUNT = 0
    begin
        INSERT INTO @res(...)
        select whatever 
          from MyTable t
          where ((@a is null) or (@a = t.a)) and
                ((@b is null) or (@b = t.b))...
          if @@ROWCOUNT = 0
          begin
             ...
          end
    end
    SELECT ... FROM @res
end


  1. Instance MySql localhost vs Amazon RDS

  2. Jak opravit výstrahu Security Advisor MySQL

  3. Kdy použít úložiště CSV pro MySQL?

  4. Srovnat strom v MySQL?