All pastes #2104177 Raw Edit

Stuff

public text v1 · immutable
#2104177 ·published 2012-01-19 21:36 UTC
rendered paste body
mysql> SHOW VARIABLES LIKE 'char%';
+--------------------------+----------------------------+
| Variable_name            | Value                      |
+--------------------------+----------------------------+
| character_set_client     | utf8                       |
| character_set_connection | utf8                       |
| character_set_database   | utf8                       |
| character_set_filesystem | binary                     |
| character_set_results    | utf8                       |
| character_set_server     | latin1                     |
| character_set_system     | utf8                       |
| character_sets_dir       | /usr/share/mysql/charsets/ |
+--------------------------+----------------------------+
8 rows in set (0.00 sec)

mysql>

mysql> SELECT name,letter FROM names WHERE letter='Š' limit 10;
+-----------+--------+
| name      | letter |
+-----------+--------+
| Sejfo     | S      |
| Selahudin | S      |
| Sabatino  | S      |
| Sabato    | S      |
| Sabino    | S      |
| Sabinus   | S      |
| Sabri     | S      |
| Sabriel   | S      |
| Saburo    | S      |
| Sacha     | S      |
+-----------+--------+
10 rows in set (0.00 sec)

mysql>