Difference between revisions of "MySQL Databases"

From Run Your Own
Jump to: navigation, search
Line 5: Line 5:
 
* Create new user called <code>newuser</code>
 
* Create new user called <code>newuser</code>
 
  CREATE USER newuser@localhost IDENTIFIED BY 'superstrongpassword';
 
  CREATE USER newuser@localhost IDENTIFIED BY 'superstrongpassword';
* Creat new UTF-8 database called <code>mydatabase</code>
+
* Creat new UTF-8 database called <code>mydatabase</code> (at time of writing, 20190214, these settings seem to be the best practice for UTF-8 settings, YMMV, update if needed)
 
  CREATE DATABASE mydatabase CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
 
  CREATE DATABASE mydatabase CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
  

Revision as of 15:01, 24 February 2019

Some MySQL handy oneliners:

  • List all users from running instance:
SELECT User, Host, Password FROM mysql.user;
  • Create new user called newuser
CREATE USER newuser@localhost IDENTIFIED BY 'superstrongpassword';
  • Creat new UTF-8 database called mydatabase (at time of writing, 20190214, these settings seem to be the best practice for UTF-8 settings, YMMV, update if needed)
CREATE DATABASE mydatabase CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;