In this blog I am going to explain that how can get comma (,)
separate values from a column. For example aa,dd,cc etc . So here is point to
point explain.
- Create a Table
First of all I am creating a table which
contains direction so here table is “DIRECTION” .
![DIRECTION Table table.png]()
2. Insert values
Here we are going to inserting directions in
table.
![insertdirection.png]()
3. Get all data
![showdata.png]()
4. Get comma separated values by concat strings
![concat.png]()
OUTPUT
![output.png]()
5. Get comma separated values using COALESCE
function
![coalesec.png]()
Here we get same output as point no 4.