mysql> create user sun1@'%';
Query OK, 0 rows affected (0.00 sec)
mysql> set password for 'sun1'@'%'=password('123');
Query OK, 0 rows affected (0.00 sec)
mysql> grant all privileges on *.* to 'sun1'@'%';
Query OK, 0 rows affected (0.00 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
mysql中创建用的"%"是否包含localhost
网络摘自:
版本 | 用户中的%是否包括localhost |
---|---|
MySQL8.0 | 包括 |
MySQL5.7 | 包括 |
MySQL5.6 | 不包括 |
MySQL5.1 | 不包括 |
MariaDB 10.3 | 不包括 |