I'm new to Ingres.
I have the following data in one table:
id description_id description
1 1 desc1
2 1 desc2
3 1 desc3
4 2 desc4
5 2 desc5
I want to produce the following result using some sql query, i.e.,
concatenate descriptions in one field based on description id.
description_id description
1 desc1, desc2, desc3
2 desc4, desc5
Is there a built-in feature to do this?
Thanks.
.
--CELKO-- - 13 Jul 2005 15:14 GMT
What is the basic rule of a tiered architecture? You do this kind of
display formatting in the front end and never in the database. This is
far more fundamental than jsut SQL programming.