-1

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?

Dharman
  • 30,962
  • 25
  • 85
  • 135
jelic98
  • 723
  • 1
  • 12
  • 28

1 Answers1

1

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

CREATE TABLE таб1 (id int, name varchar(30)) CHARSET=utf8;
Alex
  • 16,739
  • 1
  • 28
  • 51