Search code examples
mysqlsqlcyrillic

SQL cyrillic table name


How to CREATE a table with Cyrillic name and SELECT rows from that table in SQL? Also, how to make a column that accepts Cyrillic characters?


Solution

  • http://sqlfiddle.com/#!9/5686d/1

    CREATE TABLE таб1 (id int, name varchar(30)) CHARSET=utf8;