Select the rows that just inserted

后端 未结 3 1270
抹茶落季
抹茶落季 2021-01-04 18:42

How can I retrieve the row just inserted?

INSERT INTO LETTRE_VOIT
select rsVoit.NOID, NO_ORDRE, rsOrdre.CODE_DEST, rsOrdre.MODAL_MODE, rsOrdre.MODAL_PORT,
CA         


        
3条回答
  •  不知归路
    2021-01-04 19:15

    If you are using SQL Server

    And you know how many row inserted then go through

    SELECT top 2 * FROM LETTRE_VOIT order by primaryKeyId desc
    

    put the number of row inserted at place of 2.

    It may be help you, If you know the number of inserted rows, and then you can provide the numbers with top keyword

提交回复
热议问题