So, I want to remove the first 4 characters from a string in oracle. These characters can be different every time. In my case, I need to pick up the first 4 characters of IBAN and put them at the end of the line. I got part of their completion to the end of the line, but I cannot delete the first 4 characters. Each solution I found on the Internet removes the specified characters, not characters from a specific position in the string (1 to 4). I used the code below to get the first 4 characters at the end of the line and wanted to try something similar to remove them from the front, but without success.
SELECT SUBSTR(iban_nummer, 1, 4) INTO iban_substring FROM dual; iban_nummer := iban_nummer || iban_substring;
source share