Mysql Interview Question Blog Posts

Mysql interview questions

Q 1- How to setup admin user for MYSQL ? Ans: Login as super user ‘root’ in mysql and execute the following commands. mysql> use mysql; mysql> create user ‘test’@'%’ identified by ‘test’; mysql> g...
by phpzag on May 15, 2012
Close