0
Personal talk Good afternoon.
I’m making a list of columns in my Files table. And I needed to convert a "Id_folder" column of the INT type into Varchar at the time I Brought the data after the query in the database. But I don’t know how to convert. Someone could help me
my query code
SELECT DISTINCT id_pasta, nome, id_usuario, de, ate
FROM arquivos
WHERE ate between '2020-06-30' and '2020-08-15'
ORDER BY ate;
Tried to use the function
cast
?– anonimo
Yes, I did a test only with the column ID_PASTA but only returns me only the number Integer.
– Lucas_Silva