mysql新增使用者
mysql新增使用者方法
建立資料庫gamesp
create database gamesp;
新增使用者
grant all on 資料庫名.* to 使用者
名@localhost identified by '密碼';
grant all on gamesp.* to
newuser@localhost
identified by
'password';
說明:(1)grant all 賦予所有的許可權
(2)gamesp.* 資料庫 gamesp 中所有的表
(3)newuser 使用者名稱
(4)@localhost 在本地電腦上的 mysql server 伺服器
(5)identfified by 'password' 設定密碼
刪除使用者
use mysql
mysql
>delete
from user where user="***xx" and host="localhost";
mysql
>flush
privileges;
select `a`.`id` as `id`,`a`.`username` as `username`,
(case when (`a`.`sregdate` = _utf8'1990-01-01 00:00:00.0') then _utf8'' else cast(date_format(`a`.`sregdate`,_utf8'%y-%m-%d %h:%i:%s') as char charset utf8) end) as `sregdate`,(case when (`a`.`feeendtime` = _utf8'1990-01-01 00:00:00.0') then _ut ......
mysql資料庫root許可權丟失解決方案
一天不小心把root的許可權改到最小了(只能登入,什麼都做不了),這可急死我了.重灌的話太麻煩,而且裡面有很多的使用者,乙個個重新弄不知道到什麼時候。
後來我想了乙個辦法,先把當前伺服器的mysql服務停止,把mysql data目錄下的mysql目錄改名為mysql_old,到另乙個伺服器下把mysql目錄下的/ ......
innodb,普通的mysql
dump備份下來,mysql恢復起來慢得要
死.於是網上找了好久,才找到這麼個工具
先測試下再說.
可以這麼備份:
myisam
表:/usr/local/mysql/bin/mysqldump -uyejr -pyejr
--default-char ......
檢視某個表的建表語句 :show create table data_statdata;
drop index ts on data_statdata;
索引是加速查詢的主要手段,特別對於涉及多個表的查詢更是如此。本節中,將介紹索引的作用、特點,以及建立和刪除索引的語法。
13.4.1 使用索引優化查詢
索引是快速定位資料的技術,首先通過乙個示例來了解其含義及作用� ......
主:show master status;
| file |
position | binlog_do_db | binlog_ignore_db |
mysql使用者新增 MySQL使用者新增
我的是ubuntu 12.04。發現在mysql中經常出現新增使用者之後,要麼只能本地登陸,要麼只能遠端登陸的蛋疼的情況。這裡記錄一下是如何操作的。建立使用者 create user username identified by password 如果想要讓這個使用者即可以本地登陸,也可以遠端登 我...
mysql新增 mysql新增使用者
增加新使用者 格式 grant select on 資料庫.to 使用者名稱 登入主機 identified by 密碼 例1 增加乙個使用者test1密碼為abc,讓他可以在任何主機上登入,並對所有資料庫有查詢 插入 修改 刪除的許可權。首先用以root使用者連入mysql,然後鍵入以下命令 gr...
mysql新增使用者 Mysql新增使用者與授權
1 本地環境 centos linux release 7.5.1804 core 2 以root使用者登入mysql mysql uroot proot 3 切換到mysql資料庫 use mysql 4 新增使用者 只允許指定ip連線 create user 新使用者名稱 localhost i...