I cannot use the split_string function and I cannot alter the database to set the compatibility level to what I need.
I have a column with the following example values:
JohnDoe-123-fakestreet-02-2018-01-01-2018-12-03
SamSmith-ab1-concordia-16-2018-02-02-2018-11-03
JaneDoe-zxy-austin-11-2018-03-01-2018-03-16
HomerSimpson-999-Chicago-22-2018-04-01-2018-10-20
EricCartman-222-Madison-05-2018-05-01-2018-09-01
I need the 4th value in each row. I.e.:
02
16
11
22
05
How can I do this? Any suggestions?