Mysql multi-field query the same text

has field A B C
field content: text plus number
how to query and filter the results with the same text in An and B fields
query the results with the same text in A B C field

May.06,2021

select A,B,C where A=B;
select A,B,C where A=B and A=C;
Menu