Subject | Re: [firebird-support] special question view |
---|---|
Author | Markus Ostenried |
Post date | 2011-09-14T17:36:35Z |
On Wed, Sep 14, 2011 at 18:52, Olaf Kluge <olaf.kluge@...> wrote:
Look at its documentation in
Firebird_2_1\doc\sql.extensions\README.list.txt
One example from there is this:
SELECT TAG_TYPE, LIST(TAG_VALUE)
FROM TAGS
GROUP BY TAG_TYPE
HTH,
Markus
> We select some records in some tables and joins. In one Table, there are twoMaybe the LIST function can help?
> records with different values. So I have by grouping this two records every
> time.
>
> It is possible?
>
> Select a.field, b.field, (c.field record 1 and c.field record 2 in one
> string) from tabelle a left join tabelle b on a.id = b.id..?
Look at its documentation in
Firebird_2_1\doc\sql.extensions\README.list.txt
One example from there is this:
SELECT TAG_TYPE, LIST(TAG_VALUE)
FROM TAGS
GROUP BY TAG_TYPE
HTH,
Markus