test
123456
CREATE USER 'test'@'%' IDENTIFIED BY '123456';
table_name
GRANT ALL PRIVILEGES ON table_name.* TO 'test'@'%' IDENTIFIED BY '123456' WITH GRANT OPTION;
flush privileges;