I'm having a first painful experience with postgresql, and the minute-challenge of the moment is :
How to perform a concat_ws in postgresql, to join several fields value from a group by :
select concat_ws(';',field_lambda) from table_lambda group by id;