mysql常用指令

2021-09-25 03:20:05 字數 1093 閱讀 8396

1、登入本地指令

$mysql -u yourname -p

2、遠端登入

$mysql -hip -u yourname -p

3、登出

mysql>exit;

4、增加本地使用者:格式:grant select on 資料庫.* to 使用者名稱@登入主機 identified by 「密碼」;

mysql>grant select,insert,update,delete on mydb.* to newname@localhost identified by "your password";

5、增加遠端登入使用者

mysql>grant select,insert,update,delete on mydb.* to newname@"%" identified by "your password";

6、顯示某個使用者的許可權:show grants for 使用者

mysql>show grants for root@'localhost';

8、刪除使用者

mysql>delete from user where user='test' and host='localhost';

9、建立資料庫

mysql>create database yrdb;

10、顯示所有資料庫

mysql>show databases;

11、使用資料庫

mysql>use yrdb;

12、顯示資料庫表

mysql>show tables;

13、顯示表結構

mysql>desc yrtable;

14、建立資料庫表

mysql>create table myclass(

>

>

>);

15、刪除資料庫

mysql>drop database yrdb;

16、匯出\備份資料庫

$mysqldump -uyrname -pyrpd > yrfile.sql;

17、匯入資料庫(當前目錄下)

mysql>source yrfile.sql;

mysql常用指令 Mysql常用指令

mysql常用指令2021 01 19 23 40 45 作用 去除select 查詢出來的結果中重複的資料,重複資料只展示一列.關鍵字 distinct 用法 select distinct source from student table source 去重的字段條件 student tabl...

mysql手機指令 MySQL常用指令

mysql相關指令 資料庫排序規則 常用utf8 general ci 1cmd連線資料庫 1.版本檢視 mysqladmin version 2.連線root mysql u root p,輸入密碼 退出ctrl c 或quit 2查詢資料庫 show databases 3查詢資料表 show ...

MYSQL常用指令

net start mysql 啟動mysql服務 net stop mysql 關閉mysql服務 mysql create database 庫名 或 d mysqladmin u root p create 庫名 建立資料庫 mysql show databases 檢視資料庫 mysql u...