Обсуждение: last record selection

Поиск
Список
Период
Сортировка

last record selection

От
"Stanislav A. Filippov"
Дата:
Can anyone tell me if there is a direct way to SELECT the last record in
the table,
without selecting the whole table and retrieving all rows.

thanx

************




RE: [INTERFACES] last record selection

От
"Oscar Serrano"
Дата:
----- Original Message ----- 
From: Stanislav A. Filippov <safilippov@ualr.edu>
To: <pgsql-interfaces@postgreSQL.org>
Sent: Tuesday, November 30, 1999 9:27 AM
Subject: [INTERFACES] last record selection


> Can anyone tell me if there is a direct way to SELECT the last record in
> the table,
> without selecting the whole table and retrieving all rows.

I don't know if this can be useful for you:

SELECT * FROM yourtable ORDER BY whatever LIMIT 1


> thanx
> 
> ************
> 


************




RE: [INTERFACES] last record selection

От
"Oscar Serrano"
Дата:
----- Original Message ----- 
From: Stanislav A. Filippov <safilippov@ualr.edu>
To: <pgsql-interfaces@postgreSQL.org>
Sent: Tuesday, November 30, 1999 9:27 AM
Subject: [INTERFACES] last record selection


> Can anyone tell me if there is a direct way to SELECT the last record in
> the table,
> without selecting the whole table and retrieving all rows.

I don't know if this can be useful for you:

SELECT * FROM yourtable ORDER BY whatever LIMIT 1


> thanx
> 
> ************
> 


************