Skip to content

Instantly share code, notes, and snippets.

@matoken
Created September 17, 2014 08:01
Show Gist options
  • Save matoken/a66475588a7e5a5e1b54 to your computer and use it in GitHub Desktop.
Save matoken/a66475588a7e5a5e1b54 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 utf8mb4;
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