0
Dear, I need to find out which users have the login pattern "E012345", that is, it begins with the letter E and proceeds with a string of numbers.
I tried the query below on the did not roll:
SELECT *
FROM tbl_usuarios
WHERE REGEXP_LIKE (usr_login, 'E%^n$');
Somebody please help me?
It wasn’t very clear but maybe:
'^E[:digit:]{6}$'
, letter 'E' followed by 6 digits.– anonimo