I'm trying to find a way of splitting the address column into two in order to separate the street number, street name, city and state.
SELECT distinct
OWNER,
ADDRESS,
FROM vw_EMPLOYEE
This gives me a result like this
OWNER ADDRESS
JOHN 10 HILL MIAMI FL 33139
TONY 4545 BIRD AVE DORAL FL 33134
What would it be the best option to split this column in 5 different columns. I was reading about functions or sub-substring but I'm a little confused because I'm still learning about SQL