I have the following fields in the database:
| id| estados | cidades | categoria | todosjuntos |
| 1 | mg | sao paul| informati | mg/saopaulo/informati |
The first 4 are populated, but I would like to insert in the todosjuntos
the same data of the 3. Is it possible to do direct via SQL?
Update tabela set todosjuntos = estados / cidades / categoria Where todosjuntos=' '
Would it be there?