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