mysql -u root -ppassword

mysql> create user  'user'@'localhost' identified by 'password' ;
mysql> grant create on *.* to 'user'@'localhost';
mysql> flush privileges;
mysql> quit

mysql -u user -ppassword
mysql> create database testdb1;
mysql>create database testdb2;



Regards
Sudhir Menon















Regards
Sudhir Menon

Reply via email to