Retorna lista
Código SQL a ser usado:
select unnest(string_to_array('1,2,3', ',')) as lista
Retorno:
| LISTA |
---------
| 1 |
| 2 |
| 3 |
Código SQL a ser usado:
select unnest(string_to_array('1,2,3', ',')) as lista
Retorno:
| LISTA |
---------
| 1 |
| 2 |
| 3 |