Re: [GENERAL] Row Count?

From: Bruce Tong <zztong(at)laxmi(dot)ev(dot)net>
To: Thomas Reinke <reinke(at)e-softinc(dot)com>
Cc: PostgreSQL General <pgsql-general(at)postgreSQL(dot)org>
Subject: Re: [GENERAL] Row Count?
Date: 1999-05-05 15:39:02
Message-ID: Pine.LNX.4.04.9905051135530.20368-100000@laxmi.ev.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

> > SELECT * FROM foo WHERE ROW_COUNT < 10;
> > Is there anything like "ROW_COUNT" or "ROWCOUNT" in PostgreSQL?

> If trying to receive 10 rows, try
>
> begin;
> declare thomas cursor for select * from foo;
> fetch 10 in thomas;
> end;

Ooo, a cursor. I'll have to look into those. I was thinking I could just
issue "select * from foo" and then only use the first 10 results, but that
seemed like such a waste of time since there's likely to be 100's of
records. Admittedly I'm ignorant of the solution you pose and I'll have to
do some research, but it seems it too might also have the postmaster
return all of the records, of which I would only use 10. Am I wrong?

Bruce Tong | Got me an office; I'm there late at night.
Systems Programmer | Just send me e-mail, maybe I'll write.
Electronic Vision / FITNE |
zztong(at)laxmi(dot)ev(dot)net | -- Joe Walsh for the 21st Century

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Wim Ceulemans 1999-05-05 16:11:04 Re: [GENERAL] Row Count?
Previous Message Thomas Reinke 1999-05-05 15:37:50 Re: [GENERAL] Row Count?