new-user.sql

来自「我的图书馆或资料库」· SQL 代码 · 共 32 行

SQL
32
字号
# 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 + =
减小字号Ctrl + -
显示快捷键?