I have data of this pattern:
000000001 ItemA
000000002 ItemB
000000003 ItemC
and I want to get this result:
ItemA
ItemB
ItemC
I tried REGEXP_REPLACE with this regex: @"^[\d-]*\s*"
that I found in the accepted answer of this: regex remove digits and - in beginning question like this:
SELECT REGEXP_REPLACE(test_column, '@"^[\d-]*\s*"', '') FROM test_table;
but it doesn't work...