SyntaxFix
Write A Post
Hire A Developer
Questions
In Posgresql you could use ~
~
For example you could search for all rows that have col_a with any letter in lowercase
col_a
select * from your_table where col_a '[a-z]';
You could modify the Regex expression according your needs.
Regards,