I am using the REGEXP_LIKE function in Oracle 10g to find values ββin a column with the suffix _ # (e.g. _1, _2, etc.). I can find _ # in any part of the value using the query below, but can I only return values ββwith _ # at the end?
SELECT * FROM Table WHERE REGEXP_LIKE (COLUMN,'_[[:digit:]]')
oracle plsql regex
caddis
source share