Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
mysql -p pc --default-character-set=latin1
mysql> select last_name from candidate where candidate_id=3;
+-------------+
| last_name |
+-------------+
| Ková?ová |
SET character_set_results = latin1;
SELECT last_name FROM `pc`.`candidate` where candidate_id=3;