select * from patients where conditions REGEXP BINARY '^DIAB1|\\sDIAB1'
select * from patients where conditions like BINARY 'DIAB1%' or conditions like BINARY
'% DIAB1%'
2023-12-21 09:57:33
select * from patients where conditions REGEXP BINARY '^DIAB1|\\sDIAB1'
select * from patients where conditions like BINARY 'DIAB1%' or conditions like BINARY
'% DIAB1%'