[Solved] Get Substrings From DB2 Column

If this is for a specific row, maybe use SUBSTR? Something like SELECT SUBSTR(column, 6, 5) AS col1 , SUBSTR(column, 13, 5) AS col2 FROM table Here is something else you can do.. Although it gets pretty complicated, and this isn’t the exact answer you are looking for but it will get you started. Hope … Read more