By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
select '111' REGEXP '(\\w)\\1\\1';
'111' REGEXP '(\w)\1\1' |
---|
1 |
select '211' REGEXP '(\\w)\\1\\1';
'211' REGEXP '(\w)\1\1' |
---|
0 |
select '112' REGEXP '(\\w)\\1\\1';
'112' REGEXP '(\w)\1\1' |
---|
0 |