Forum Replies Created

Viewing 2 posts - 1 through 3 (of 3 total)

  • RE: Procedure to select and insert

    in oracle I use:

    merge into MonthsImports MI using (select...) I on MI.id = I.id

    when matched then update set MI.id = I.id ...

    when not matched then Insert MI.id... values(I.id...)

    I dont have...

  • RE: Procedure to select and insert

    OK. Every month the Import table is filled with the current information about the salaries. I have to store the whole history concerning the salaries in another table. For this...

Viewing 2 posts - 1 through 3 (of 3 total)