1
in my system, I have a multi select as they can come in the image below:
And I export this variable in this select
SELECT
REPLACE(p.Argautor, ',', ';') AS Argautor
FROM jud_Processos p
LEFT JOIN jud_Comarcas c ON p.ComarcaId = c.ComarcaId
LEFT JOIN jud_Municipios m ON p.Munautor = m.MunicipioId
INNER JOIN jud_Estados e ON e.EstadoId = p.EstadoId
the results of this variable come like this:
I wonder if it is possible to separate this column Mortar in several columns, as an example.
when Mortar for = 0 have a column called columnar and shows only the results that are 0, column1 and to show only the results that are 1 so successively, I would like to know if this is possible
So you just want one row and several columns?
– Sorack
yes only that as you can see in the photo in a row has several values, example, the column0 can only appear values that are 0 can not show other values
– Leonardo Macedo