Skip to content
Advertisement

Splitting alphumeric column in SQL

I currently have a dataset looking like this

I want to split the string values for each column so I could watch something like this:

I am currently using the following code for the 1st column:

which gives me the following error:

How could I declare argument function?,

Thanks in advance

Advertisement

Answer

Most databases support left() and right() and either len() or length(). That suggests:

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement