Is there any way to specify COLLATE
and MATCH() AGAINST()
in the same query string. I'm trying to get this.
SELECT * FROM table WHERE COLLATE latin1_general_cs MATCH(column) AGAINST('string')
I know that won't work, just an example.
If COLLATE
dose not work with MATCH
. How can I specify the case sensitivity in every query, because I need both case sensitive and case insensitive MATCH() AGAINST()
queries.