mysql 常用命令

2021-08-01 20:39:10 字數 1188 閱讀 1302

1. 建立資料庫,使用utf-8編碼:

create database db_name default character set utf8 collate utf8_general_ci;

2.建立資料庫表:

create table table_name(id int(11) not null auto_increment, name varchar(255), primary key(id));

3.修改資料庫表:

alter table table_name 

add column age int not null default 0 after 'name';   #在某列後增加一列

alter table table_name drop column age;  #刪除列

alert table table_name change 'address' 'age' int not null default 0 after '***';   #調整順序

alter table t1 change a b integer;   #重新命名列

alter table t1 rename t2;   #重新命名表名

alter table table_name add index 索引名 (欄位名1[,欄位名2 …]);    #新增索引

alert table table_name add field_name field_type;  #增加字段

alert tabletable_name change old_field_name new_field_name field_type;   #修改字段

alert tabletable_name drop field_name;  #刪除字段

4.建立遠端連線使用者並授權:

grant all privileges on vmasdb.* to vmagent@'%' identified by 'paic1234';

flush privileges;   #重新整理

5.資料庫備份與恢復:

mysqldump -u username -p dbname table1 table2 ... > backup.sql    #資料庫備份

mysql -u root -p dbname < backup.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...