Re: function array_to_string(text[]) does not exist

From: Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com>
To: Victor Sterpu <victor(at)caido(dot)ro>
Cc: postgres list <pgsql-sql(at)postgresql(dot)org>
Subject: Re: function array_to_string(text[]) does not exist
Date: 2013-08-25 13:18:14
Message-ID: CAFj8pRCOvaDx08ARXaZ-cn5JD0ZwGUF5g6nLhCmNtgN8dHnYvQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hello

you should to enter separator

postgres=# select array_to_string(ARRAY[1,2,3,4], '|');
array_to_string
─────────────────
1|2|3|4
(1 row)

Regards

Pavel Stehule

2013/8/25 Victor Sterpu <victor(at)caido(dot)ro>

> Hello
>
> When I run :
> SELECT array_to_string(array_agg(CONCAT(CAST (ltrv1.val_min AS CHAR), '-',
> CAST(ltrv1.val_max AS CHAR), ' ', ltrv1.comentarii)))
> FROM lab_tests_reference_values ltrv1
> GROUP BY ltrv1.val_min, ltrv1.val_max, ltrv1.comentarii;
>
> I get the error:
> ERROR: function array_to_string(text[]) does not exist
> LINE 1: SELECT array_to_string(array_agg(CONCAT(CAST (ltrv1.val_min ...
> ^
> HINT: No function matches the given name and argument types. You might
> need to add explicit type casts.
>
> I tryed to cast but it's still not working.
>
> Thanku you.
>
> *DISCLAIMER:
> Acest mesaj de posta electronica si documentele aferente sunt
> confidentiale. Este interzisa distribuirea, dezvaluirea sau orice alt mod
> de utilizare a lor. Daca nu sunteti destinatarul acestui mesaj, este
> interzis sa actionati in baza acestor informatii. Citirea, copierea,
> distribuirea, dezvaluirea sau utilizarea in alt mod a informatiei continute
> in acest mesaj constituie o incalcare a legii. Daca ati primit mesajul din
> greseala, va rugam sa il distrugeti, anuntand expeditorul de eroarea
> comisa. Intrucat nu poate fi garantat faptul ca posta electronica este un
> mod sigur si lipsit de erori de transmitere a informatiilor, este
> responsabilitatea dvs. sa va asigurati ca mesajul (inclusiv documentele
> alaturate lui) este validat si autorizat spre a fi utilizat in mediul dvs.
> *
>
>

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Herouth Maoz 2013-08-28 10:07:18 Is there a way to build a query based on data in a table?
Previous Message Jov 2013-08-25 12:33:31 Re: function array_to_string(text[]) does not exist