Forum Replies Created

Viewing post 1 (of 2 total)

  • RE: Problems with INSERT from stored procedure

    Find the solution. Can do the same using functions:

    CREATE FUNCTION test_0 ()

    RETURNS @t table (ID int)

    as

    begin

    insert into @t values (1),(2),(3)

    RETURN

    end

    go

    CREATE FUNCTION test_1 ()

    RETURNS @t1 table (ID int)

    as

    begin

    insert...

Viewing post 1 (of 2 total)