mysql - ERROR 1046 (3D000): No database selected while creating user -
when create admin user with:
grant on * my_name@localhost identified 'my_passwd' grant option
i received error message "error 1046 (3d000): no database selected
".
you should saying below qualifying database name. check mysql documentation more information.
grant on db_name.*
so case,
grant on db1.* my_name@localhost identified 'my_passwd' grant option;
Comments
Post a Comment