Tengo una mesa:
CREATE TABLE tblproducts
(
productid integer,
product character varying(20)
)
Con las filas:
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');
Si ejecuto string_agg()
en tblproducts
:
SELECT string_agg(product, ' | ') FROM "tblproducts"
Devolverá el siguiente resultado:
CANDID POWDER 50 GM | ESOZ D 20 MG CAP | HHDERM CREAM 10 GM | CREAM 15 GM | KZ LOTION 50 ML | BUDECORT 200 Rotocap
¿Cómo puedo ordenar la cadena agregada, en el orden en que la usaría ORDER BY product
?
Estoy usando PostgreSQL 9.2.4.
sql
postgresql
string-aggregation
Vivek S.
fuente
fuente
string_agg
en la documentación no lo lleva allí.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 ...
fuente
WITHIN GROUP
cláusula no se aplica a lastring_agg
función, como ocurre con Microsoft SQL.select string_agg(prod,' | ') FROM (SELECT product as prod FROM tblproducts ORDER BY product )MAIN;
Violín SQL
fuente
ORDER BY
cláusula en la subconsulta, laFROM
cláusula no necesariamente ordena los datos. Si esto funciona, es pura suerte.