Re: Query

Поиск
Список
Период
Сортировка
От Mitch Vincent
Тема Re: Query
Дата
Msg-id 001601c13ca4$bb0e1550$1e51000a@mitch
обсуждение исходный текст
Ответ на Query  ("Tamara D. Blum" <tblum@jus.gov.ar>)
Список pgsql-general
>     I'm trying to execute the following query:
>         "SELECT TOP 10 * FROM table1"

SELECT * FROM table1 LIMIT 10

 -- might give you what you're looking for.. I've not seen TOP, though I
could guess where it comes from (Oracle?) -- top seems to imply order so you
might want to ORDER BY something in the query before you LIMIT ...

-Mitch



В списке pgsql-general по дате отправления:

Предыдущее
От: "Tamara D. Blum"
Дата:
Сообщение: Query
Следующее
От: "Joe Conway"
Дата:
Сообщение: Re: Query