I think this is fairly simple. I'd like to only return the string values that contact leading numbers in my query results.
For example:
003 - Preliminary Examination Plan
005 - Coordination
1000a - Balance sheet
Advertising
Amortization
Partnerships
Would like to get:
003 - Preliminary Examination Plan
005 - Coordination
1000a - Balance sheet
This code gave me zero results. How do I check if the leading numbers contain digits and return the rest of string?
select distinct AIssue
from SQLIssue
where regexp_like( AIssue, '^[[:digit:]]*$' )
order by AIssue