You could use:
SELECT * FROM table WHERE field LIKE 'f_retag';
('_' is the single character wildcard for LIKE statements)
If you are using a terminal, make sure the terminal is using UTF-8. Try:
echo $LANG
Also try forcing the character set when starting the mysql command:
mysql --default-character-set=utf-8
Otherwise, please give more details about what language and environment you are using to access the DB.
rjmunro
2009-11-15 00:02:52