Create DB for Wordpress


/ Published in: SQL
Save to your folder(s)

Example:
CREATE SCHEMA `db_wordpress_02` ;

GRANT ALL PRIVILEGES ON db_wordpress_02.* to 'root'@'localhost' IDENTIFIED BY 'scr1ptlov3r';


Copy this code and paste it in your HTML
  1. CREATE SCHEMA `your_db_name` ;
  2.  
  3. GRANT ALL PRIVILEGES ON your_db_name.* TO 'your_user_name'@'localhost' IDENTIFIED BY 'your_password';

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.