连续找到 3 个字母

Find 3 in a row letters

我需要确定一个字段是否连续包含 3 个字母:
示例:

123abv31231 - Correct
abc12314121 - Correct
asdsadsad12 - Correct
98381233abc - Correct
123123ab123 - Not Correct

3 个字符在哪里都没有关系。唯一的问题是它们必须至少连续 3 个。
我正在使用 SQL 服务器

与运算符 LIKE:

select * from tablename
where col like '%[a-z][a-z][a-z]%'

参见demo
结果:

> | col         |
> | :---------- |
> | 123abv31231 |
> | abc12314121 |
> | asdsadsad12 |
> | 98381233abc |