i tried to write a query that returns rows that start with numeric values in Oracle.
for example, if the values are "123abc", "abc123", "123abc123", "1a", "a1"
it will returns: "123abc", "123abc123", "1a"
i tried this query:
SELECT *
FROM table_name
WHERE regexp_like(column_Name,'[^0-9](*)')
where is my mistake?