Oracle 기반으로 작성된 책을 보다가
rownum, rowid, decode 등에 관한 설명이 나오는데
Postgres에서도 가능한지 궁금합니다.
psql에서 test해 보니 안 되는 것 같아서요.
select rownum,name from my_table;
이렇게 하면 rownum이라는 attribute가 없다고 하고,
select rownum(),name from my_table;
No such function 'rownum' with the specified attributes 이라네요.
|