iPhonex如何鑒別基帶 iphonex的基帶怎么分辨
2023-11-24
create database" />
更新時間:2023-11-24 00:14:21作者:未知
mysql建立數(shù)據(jù)庫使用create命令:
新建數(shù)據(jù)庫例:
以mysql最高管理員登錄,在mysql>create database XXXXX;
xxxxx即為數(shù)據(jù)庫名.
在mysql中如何創(chuàng)建用戶,使該用戶對該數(shù)據(jù)庫有完全權(quán)限.
可 以 用 GRANT 命 令 , 格 式 如 下 :
GRANT 許可權(quán) ON 數(shù)據(jù)庫名.表名 TO 新用?裘?主機(jī)名 IDENTIFIED BY '密碼';
grant all on husidb.* to john@localhost identified by ’201314’;
注:每一句mysql語句后面都跟有;號.注意大小寫.