Hello,
i'm using the syntax for showing menu, this works fine.
Custom SQL WHERE soort LIKE "%Restaurant%"
However if I want to show where the table contains Café i have an ACCENT problem. How do i fix this?
I tried
replace(replace(soort,'é','e')) LIKE COLLATE Latin1_general_CI_AI '%cafe%' COLLATE Latin1_general_CI_AI
OR
soort COLLATE Latin1_General_CI_AI Like "%cafe%" COLLATE Latin1_General_CI_AI
OR
oort LIKE '%cafe%' COLLATE Latin1_General_CI_AI
but all three of them did not work and showed no result, do you know the solution of this problem?
thank you,
marK