开发者

Number of rows in Oracle SQL Select?

开发者 https://www.devze.com 2022-12-30 23:52 出处:网络
I need to know 开发者_StackOverflow中文版how many records were returned in a select in oracle.Currently, I do two queries:

I need to know 开发者_StackOverflow中文版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;

I need to know the COUNT but I hate doing two queries. Is there a way to do:

SELECT * FROM MY_ITEMS 

and then find out how many records are in there?


Is there a way to do:

SELECT * FROM MY_ITEMS 

and then find out how many records are in there?

If you want it to be in this exact order, you can fetch all records on the client and count their number (almost all client libraries provide a function for that).

You can also do:

SELECT  i.*, COUNT(*) OVER ()
FROM    my_items i

, which will return you the count along with each record.


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.


This ought to do the trick.

WITH 
base AS
(
    SELECT *
    FROM MY_ITEMS
)
SELECT (SELECT COUNT(*) FROM base) kount,
       base.*
FROM base


I'm just unsure about the table aliases, I don't remember in Oracle if they require 'AS' or not. But this should work.

select mt.*, c.Cntr
    from MyTable mt
        , (select COUNT(*) as Cntr
               from MyTable
           ) c
0

精彩评论

暂无评论...
验证码 换一张
取 消