1
I’m doing a query in a table. The field filiais
returns the following value
["005","001"]
I wanted to directly in the query turn this string(varchar) into:
['005','001']
With the simple quotes
My query
SELECT * FROM bancos WHERE ativo=1
['005','001']
already is the raw value returned by query, right?– André Ribeiro