Code:
SELECT array_to_string(array(SELECT column_name FROM table_name), ':');
This will concatenate all values into one string, with a ':' between each value.
Code:
SELECT array_to_string(array(SELECT roadnum FROM table_name WHERE ID=4), ':');
Leave a comment: