create new database


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

Create a new database and its respective user with all privileges


Copy this code and paste it in your HTML
  1. create database <database_name>
  2. grant all on <database_name>.* to <user_name>@localhost identified by '<user_password>';

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.