retrieve row number

Поиск
Список
Период
Сортировка
От Pascal Tufenkji
Тема retrieve row number
Дата
Msg-id 000301c71512$5f773130$ef64a8c0@pascolo
обсуждение
Ответы Re: retrieve row number
Список pgsql-sql

Hi,

 

Can I retrieve the row number in a select statement?

For example : if I have the following table “foo”

 

col1 | col2

-----+-----

 a   | x

 b   | y

 c   | z

 

 

select ?? as row_number, col1, col2 from foo;

 

I should obtain the following result :

 

row_number | col1 | col2

-----------+------+-----

         1 | a   | x

         2 | b   | y

         3 | c   | z

 

 

Thank you

Pascal

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