Sqlserver
 sql >> Datenbank >  >> RDS >> Sqlserver

So führen Sie eine gespeicherte Prozedur in einer Auswahlabfrage aus

Danke @twoleggedhorse.

Hier ist die Lösung.

  1. Zuerst haben wir eine Funktion erstellt

    CREATE FUNCTION GetAIntFromStoredProc(@parm Nvarchar(50)) RETURNS INTEGER
    
    AS
    BEGIN
       DECLARE @id INTEGER
    
       set @id= (select TOP(1) id From tbl where [email protected])
    
       RETURN @id
    END
    
  2. dann machen wir die Auswahlabfrage

    Select col1, col2, col3,
    GetAIntFromStoredProc(T.col1) As col4
    From Tbl as T
    Where [email protected]