I have a table
And try to execute this command :
SELECT * FROM projects WHERE (UPPER(title) LIKE '%КУ%' OR UPPER(description) LIKE '%КУ%')
In the end i want to get a row with id 2
but nothing returns to me.
But, when i change request to :
SELECT * FROM projects WHERE (UPPER(title) LIKE '%Ку%' OR UPPER(description) LIKE '%Ку%')
It returns row (as expected) with id 2
.
What i doing wrong? Why UPPER not worked?