in my table, I have a column that contains two IDs:
example:
Comment |
---|
Internal message ID: 7878 External message ID: 788CBNCGD9_3_5_87BFHJD |
Internal message ID: 90278 External message ID: 788H2692029_3_5_8890ZG |
I want to get two columns: Internal Id and External ID
Internal ID | External ID |
---|---|
7878 | 788CBNCGD9_3_5_87BFHJD |
90278 | 788H2692029_3_5_8890ZG |
I’ve been thinking about using the substring but I don’t know how.
Can someone help me?