1
我需要將查詢從Oracle SQL轉換爲Postgres。查詢從遊標返回單行元素。我會寫這個查詢的簡化形式甲骨文:PostgreSQL - 如何從一行中的遊標中選擇元素
select CONCAT_LIST(cursor(select first_name || '-' || last_name from sys_users) ,',') as users_list from dual
如果表 「sys_users」 有2個元素:
1. first name - "John", last name - "Smith"
2. first name - "George", last name - "Doe" ,
結果是:
John-Smith,George-Doe
我需要在Postgres中得到相同的結果,如果這個表中的元素是相同的。