私はテーブルを持っています:
CREATE TABLE tblproducts
(
productid integer,
product character varying(20)
)
行で:
INSERT INTO tblproducts(productid, product) VALUES (1, 'CANDID POWDER 50 GM');
INSERT INTO tblproducts(productid, product) VALUES (2, 'SINAREST P SYP 100 ML');
INSERT INTO tblproducts(productid, product) VALUES (3, 'ESOZ D 20 MG CAP');
INSERT INTO tblproducts(productid, product) VALUES (4, 'HHDERM CREAM 10 GM');
INSERT INTO tblproducts(productid, product) VALUES (5, 'CREAM 15 GM');
INSERT INTO tblproducts(productid, product) VALUES (6, 'KZ LOTION 50 ML');
INSERT INTO tblproducts(productid, product) VALUES (7, 'BUDECORT 200 Rotocap');
tblproducts
でstring_agg()
を実行すると:
SELECT string_agg(product, ' | ') FROM "tblproducts"
次の結果が返されます。
CANDID POWDER 50 GM | ESOZ D 20 MG CAP | HHDERM CREAM 10 GM | CREAM 15 GM | KZ LOTION 50 ML | BUDECORT 200 Rotocap
ORDER BY product
を使用して取得する順序で、集計された文字列を並べ替えるにはどうすればよいですか?
PostgreSQL 9.2.4を使用しています。
Postgres 9.0以降では、次のことができます。
select string_agg(product,' | ' order by product) from "tblproducts"
詳細はこちら 。
https://docs.Microsoft.com/en-us/sql/t-sql/functions/string-agg-transact-sql?view=sql-server-2017
SELECT
STRING_AGG(prod, '|') WITHIN GROUP (ORDER BY product)
FROM ...
select string_agg(prod,' | ') FROM
(SELECT product as prod FROM tblproducts ORDER BY product )MAIN;