MySQL创建账号并指定数据库

创建账号

create user tableau@'%' identified by 'M2el@20230426';

授权数据库

grant all privileges on tableau_data.* to 'tableau'@'%';
评论