Files
fastapi-demo/record.md
2023-11-04 18:10:56 +08:00

5 lines
205 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
授予用户mydata可以在任何主机上连接到mydata数据库并拥有对该数据库中所有表的增删改查等操作的权限。
```mysql
GRANT ALL PRIVILEGES ON mydata.* TO 'mydata'@'%';
```