shift + 右鍵 開啟命令視窗
mysql -u root -p
###資料庫操作
//檢視所有資料庫
show
databases
//建立資料庫
create
databases mydb;
//刪除資料庫
drop
databases mydb;
//選擇資料庫
use mydb;
//檢視資料庫所有表
show tables
//建立資料庫表
create table books (
bookid int not null primary key auto_increment,
bookname varchar(20) not null,
bookdate timestamp default current_timestamp()
);//顯示表的結構
describe books;
//刪除表
drop table books;
//清空表
delete from books;
curd//create
insert into books (bookname) values("primer c++"),("深入淺出nodejs");
//update
update books set bookname='primer c++ 5th' where bookname="primer c++";
//read
select * from books where bookid <= 10 order by bookdate asc;
//delete
delete from books where bookname='primer c++ 5th';
#連線資料庫
mysql -u root -p
#檢視幫助
help contents;
help administration;
#建立gerrit使用者和reviewdb資料庫
create user 'git'@'localhost' identified by 'git';
create database reviewdb;
alter database reviewdb charset=latin1;
grant all on reviewdb.* to 'git'@'localhost';
flush privileges;
#檢視所有資料庫
show databases;
#檢視所有使用者
select distinct concat('user: ''',user,'''@''',host,''';') as query from mysql.user;
#檢視登入方式和密碼
select user, plugin, password from mysql.user;
//備份整個資料庫
mysqldump -u user_name -p database_name > outfile_name.sql
mysqldump -u root -p mydb > ~/mydb.bk.sql
//備份乙個表
mysqldump -u user_name -p database_name table_name > ~/outfile_name.sql
參考:
mysql命令大全
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...