当前位置:网站首页>MySQL project 8 summary
MySQL project 8 summary
2022-06-26 10:21:00 【m0_ sixty-one million nine hundred and sixty-one thousand eight】
Add database users
CREATE USER ‘username’@‘host’ IDENTIFIED BY ‘password’;
username – The user name description you will create :
host – Specifies on which host the user can log in , If available to local users localhost, Such as If you want this user to be able to log in from any remote host , You can use wildcards %
password – The login password of the user , The password can be null , If it is blank, the user can log in without a password Land server
To give 、 Reclaim database user permissions
to grant authorization
GRANT privileges ON databasename.tablename TO ‘username’@‘host’;
privileges – User action permissions , Such as SELECT , INSERT , UPDATE etc. ( See the end of the article for a detailed list ). If you want to grant Permission to use ALL explain :
databasename – Database name
tablename- Table name , Available if you want to grant the user access to all databases and tables * Express , Such as *.*
Users authorized by the above command cannot authorize other users , If you want the user to be authorized , Use the following command
GRANT privileges ON databasename.tablename TO ‘username’@‘host’ WITH
GRANT OPTION;
Set and change user passwords
SET PASSWORD FOR ‘username’@‘host’ = PASSWORD(‘newpassword’);
If it is the current login user
SET PASSWORD = PASSWORD(“newpassword”);
边栏推荐
- 1. 两数之和(LeetCode题目)
- Various errors encountered by tensorflow
- Yarn package management tool
- 【LeetCode】59. Spiral matrix II
- Luogu 1146 coin flip
- Day 3 array, pre post, character space, keyword and address pointer
- Internationalization configuration
- 瑞萨电子面向物联网应用推出完整的智能传感器解决方案
- Appium自动化测试基础 — 移动端测试环境搭建(二)
- Testing practice - App testing considerations
猜你喜欢
随机推荐
MySQL learning summary
Global and Chinese market for baked potato chips 2022-2028: Research Report on technology, participants, trends, market size and share
What is the web SSH service port of wgcloud
How to change the QR code material color of wechat applet
Learning and understanding of thread pool (with code examples)
Allocation de mémoire tas lors de la création d'objets
String constant pool, class constant pool, and runtime constant pool
echo $?
Global and Chinese market of aluminum sunshade systems 2022-2028: Research Report on technology, participants, trends, market size and share
DBSCAN
The IE mode tab of Microsoft edge browser is stuck, which has been fixed by rolling back the update
[untitled]
Leetcode intermediate node of linked list
1. sum of two numbers (leetcode topic)
Introduction to libmagic
Svn command
What is a botnet
Basic string operations in C
jar版本冲突问题解决
How to find and install the dependent libraries of Debian system







