Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Select statement

Re: Select statement

From: Tom Jordan <TomJordanTojo_at_hotmail.com>
Date: Tue, 12 Jun 2001 17:41:07 +0200
Message-ID: <MPG.15905680bf25806c98968b@news.t-online.de>

In article <3b26318c.24258632_at_news.telepac.pt>, lfernandes_at_gruposumol.pt says...

Do you want the total count of all tables:   select count(*)

        from dba_tables

... or the count for each individual table:   select table_name, count(*)

	from dba_tables
	group by table_name

?

> How can i do this in Oracle?
>
> select table_name from dba_tables;
>
> and then
>
> select count(*) from ... each table resulting from first select?
>
>
> I'll appreciate your solutions..
>
> lfernandes_at_gruposumol.pt
>
Received on Tue Jun 12 2001 - 10:41:07 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US