MySQL 常用命令

2021-07-04 08:41:57 字數 2998 閱讀 8195

mysql命令

一、普通操作

1.修改密碼 格式:mysqladmin -u使用者名稱 -p舊密碼 password 新密碼

2.給root加個密碼ab12,首先在dos下進入目錄mysqlbin,然後鍵入以下命令:mysqladmin -uroot -password ab12注:因為開始時root沒有密碼,所以-p舊密碼一項就可以省略了。

3.再將root的密碼改為djg345:mysqladmin -uroot -pab12 password djg345

4.增加新使用者:grant select on 資料庫.* to 使用者名稱@登入主機 identified by \"密碼\"

5.增加乙個使用者test1密碼為abc,讓他可以在任何主機上登入,並對所有資料庫有查詢、插入、修改、刪除的許可權:grant select,insert,update,delete on *.* to [email=test2@localhost]test2@localhost[/email] identified by \"abc\";

二、mysql常用命令

1.create database name;建立資料庫

2.use databasename;選擇資料庫

3.drop database name直接刪除資料庫,不提醒

4.show tables;顯示表

5.describe tablename;表的詳細描述

6.select 中加上distinct去除重複字段

7.mysqladmin drop database name刪除資料庫前,有提示。

8.select version(),current_date;顯示當前mysql版本和當前日期

9.shell>mysql -u root -p

mysql> update user set password=password(」xueok654123″) where user=』root』修改mysql中root的密碼

10.flush privileges重新整理資料庫

11.describe user;顯示表mysql資料庫中user表的列資訊

12.grant all privileges on *.* to;建立乙個可以從任何地方連線伺服器的乙個完全的超級使用者,但是必須使用乙個口令something做這個mysql> [email=user@localhost]user@localhost[/email] identified by 』something』 with

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

grant

allprivileges

on *.* to [email=monty@localhost]monty@localhost[/email] identified by 』something』 with

grant

option;

14.刪除授權:

mysql> revoke all privileges on *.* from [email=root@%e2%80

%9d%]root@」

%[/email]」;

mysql> delete from user where user=」root」 and host=」%」; 

mysql> flush privileges;

15. 建立乙個使用者custom在特定客戶端it363.com登入,可訪問特定資料庫fangchandb

mysql >grant select, insert, update, delete, create,drop on fangchandb.* to

custom@ it363.com identified by 『 passwd』

16.重新命名表:mysql > alter table t1 rename t2;

17.mysqldump 備份資料庫shell> mysqldump -h host -u root -p dbname >dbname_backup.sql

18.恢復資料庫shell> mysqladmin -h myhost -u root -p create dbname

shell> mysqldump -h host -u root -p dbname < dbname_backup.sql
19.如果只想卸出建表指令,則是:shell> mysqladmin -u root -p -d databasename > a.sql

20.如果只想卸出插入資料的sql命令,而不需要建表命令,則命令如下:shell> mysqladmin -u root -p -t databasename > a.sql

21.那麼如果我只想要資料,而不想要什麼sql命令時,應該如何操作呢?shell> mysqldump -t./ phptest driver

其中,只有指定了-t引數才可以卸出純文字檔案,表示卸出資料的目錄,./表示當前目錄,即與mysqldump同一目錄。如果不指定driver 表,則將卸出整個資料庫的資料。每個表會生成兩個檔案,乙個為.sql檔案,包含建表執行。另乙個為.txt檔案,只包含資料,且沒有sql指令。

mysql基本常用命令 MySQL常用命令(一)

cmd提示框中的mysql基礎命令 一 命令 連線mysql伺服器 mysql h localhost u root p 展示所有資料庫 show databases 選擇資料庫 use database 展示所選資料下所有表 show tables 設定資料庫編碼 set names gbk 用s...

mysql巡檢常用命令 mysql 常用命令

客戶端連線 進入命令列,windows cmd,連線 mysql u 使用者名稱 p密碼 h 伺服器ip位址 p 伺服器端mysql埠號 d 資料庫名 注意 1 伺服器端口標誌 p一定要大些以區別於使用者 p,如果直接連線資料庫標誌 d也要大寫 2 如果要直接輸入密碼 p後面不能留有空格如 pmyp...

mysql常用命令總結 mySql常用命令總結

總結一下自己常用的mysql資料庫的常用命令 mysql u root p 進入mysql bin目錄後執行,回車後輸入密碼連線。資料庫操作 1 create database dbname 建立資料庫,資料庫名為dbname 2 create database todo default chara...