I want the following Character » to show when i do a query but I keep getting the following »
Here is my query:
SELECT CONCAT_WS(' » ',t2.`description`,t1.`description`) AS pages_structure
My Database is set to utf8_general_ci
My guess is that your client character set is not utf8. Run this to find out if that's the case:
show variables like 'character_set_client';
Then you could change it like this to test if it fixes your problem:
set character_set_client = 'utf8';
You may need to make that change in your /etc/my.cnf as well.
Managed to fix the issue by updating to MySQL version 5.5.
My guess is that your client character set is not utf8. Run this to find out if that's the case:
Then you could change it like this to test if it fixes your problem:
You may need to make that change in your /etc/my.cnf as well.