Create database and grant privileges to use

[ permalink ] [ download ]
to sql mysql by aitzol
create database database_name;
grant all on database_name.* to 'user_name'@'host_name' [identified by 'user_password']
hits counter