Tôi có một bảng:
CREATE TABLE tblproducts
(
productid integer,
product character varying(20)
)
Với các hàng:
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');
Nếu tôi thực hiện string_agg()
trên tblproducts
:
SELECT string_agg(product, ' | ') FROM "tblproducts"
Nó sẽ trả về kết quả sau:
CANDID POWDER 50 GM | ESOZ D 20 MG CAP | HHDERM CREAM 10 GM | CREAM 15 GM | KZ LOTION 50 ML | BUDECORT 200 Rotocap
Làm cách nào để sắp xếp chuỗi tổng hợp, theo thứ tự tôi sẽ sử dụng ORDER BY product
?
Tôi đang sử dụng PostgreSQL 9.2.4.