Skip to content

Instantly share code, notes, and snippets.

@matoken
Created September 17, 2014 03:38
Show Gist options
  • Save matoken/bc628ca176e9eb0025c3 to your computer and use it in GitHub Desktop.
Save matoken/bc628ca176e9eb0025c3 to your computer and use it in GitHub Desktop.
GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,ALTER
ON test_utf8.*
TO test_utf8@localhost
IDENTIFIED BY 'Fetmah!esEr9';
CREATE DATABASE test_utf8 CHARACTER SET utf8;
USE test_utf8;
CREATE TABLE test_utf8.moji(id int, moji text);
INSERT INTO test_utf8.moji(id, moji) values( '1', 'あいうえお' );
INSERT INTO test_utf8.moji(id, moji) values( '2', '寿司🍣susi' );
FLUSH PRIVILEGES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment