Mysql常用命令

2022-09-13 15:12:08 字數 1250 閱讀 9853

alter user 'root'@'localhost' identified by 'root';

mysql> flush privileges;

show variables like 'version%';

#使用grant方式建立乙個新帳戶fred,並設定密碼

grant usage on *.* to 'fred'@'localhost' identified by 'fred';

#檢視剛剛建立的賬戶

select host,user,password from mysql.user where user='fred';

#使用set password方式來修改賬戶密碼

set password for 'fred'@'localhost'=password('passwd');

#重新整理許可權

#flush privileges;

更改使用者名稱:

update user set user="dns" where user="root";

檢視資料庫

show databases

選擇資料庫

mysql> use mysql;  選擇資料庫

設定字符集

set names 'gbk';

#查詢資料庫中的表

show tables;

#檢視表結構

desc test;

#顯示資料庫版本

select version();

#顯示當前時間

select current_date;

#將查詢出的資料匯入檔案

select * from user into outfile "/etc/test.txt" fields terminated by ",";

#檢視資料庫狀態

mysql> status;

#匯入sql檔案

source /etc/mysql.sql;

修改mysql使用者密碼

(1)不需要root使用者使用mysqladmin

mysqladmin -u user -p password password

(2)需要root使用者使用update或set

update user set password=password('123456') where user='root';

flush privileges;

set password for root=password('123456');

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...