I want to find a record that is found in the search with both uppercase and lowercase letters. At the moment, however, I have to search exactly as the data set is in the database. In this example with the capital letter "A". When I search for "ahmed", MySQL cannot find any data
SELECT * from zusammen WHERE MATCH(concat_Names) AGAINST ('+Ahmed' IN BOOLEAN MODE) AND zusammen.pep_sanktion = "pep" LIMIT 50;
I also tried with Natural Language Mode:
SELECT * from zusammen WHERE MATCH(concat_Names) AGAINST ('+Ahmed' IN NATURAL LANGUAGE MODE) AND zusammen.pep_sanktion = "pep" LIMIT 50;