📄 new-user.sql
字号:
# new-user.sql - an SQL statment to GRANT access to a database## Change:## dddd - the name of your database# uuuu - the name of the user accessing dddd# hhhh - the host uuuu is coming from# pppp - the password of uuuu## For example:## GRANT SELECT, INSERT, UPDATE, DELETE# ON mylibrary.*# TO mylibrary@localhost# IDENTIFIED BY 'suprsecrit';## Usage:# # mysql -uroot -p mysql < new-user.sql## Eric Lease Morgan <emorgan@nd.edu># University Libraries of Notre Dame## 08/22/02 - changed signature, that's all# 12/11/00 - first cut##GRANT SELECT, INSERT, UPDATE, DELETEON dddd.*TO uuuu@hhhhIDENTIFIED BY 'pppp';
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -