Number of rows in Oracle SQL Select?

前端 未结 4 614
时光取名叫无心
时光取名叫无心 2021-02-08 02:18

I need to know how many records were returned in a select in oracle. Currently, I do two queries:

SELECT COUNT(ITEM_ID) FROM MY_ITEMS;

SELECT * FROM MY_ITEMS;
         


        
4条回答
  •  隐瞒了意图╮
    2021-02-08 02:49

    If you're working in PL/SQL, you can use the SQL%ROWCOUNT pseudo-variable to get the number of rows affected by the last SQL statement. Might save you some effort.

提交回复
热议问题