Hello friends, I have a very simple query, let's say it is
select puesto from puestos
and give me back the following
| 1 | Oficial Policiaco |
| 2 | Juez Amparo |
| 3 | etc etc |
I need to separate this select and accommodate something like this
| p1 | p2 |
|Oficial| Policiaco |
the data are only separated by spaces, I need to put them either in different variables or in different fields. Does anyone know how to do this? and if I can do split for spaces?