How do I get all numbers after slash in my column?
Example: 884/9 and 884/12
I need to get it as "9" and "12".
This one doesn't work - I am using Postgres and Dibi library
substring(source_path, '/(.*)$')
How do I get all numbers after slash in my column?
Example: 884/9 and 884/12
I need to get it as "9" and "12".
This one doesn't work - I am using Postgres and Dibi library
substring(source_path, '/(.*)$')