create database db_name;
create user 'zhangsan'@'localhost' identified by '123456';
grant all on db_name.* to 'zhangsan'@'localhost';
create database db_name;
create user 'zhangsan'@'localhost' identified by '123456';
grant all on db_name.* to 'zhangsan'@'localhost';