MYSQL常用命令列表
1、系統管理
mysql -h主機地址 -u使用者名稱 -p
串連MYSQL(在mysql/bin)
exit
退出MYSQL命令
mysqladmin -u使用者名稱 -p舊密碼 password新密碼
修改密碼(在mysql/bin)
grantselect[insert][,update][,delete]on資料庫.*to使用者名稱@localhost("%", 表示任何主機)identifiedby "密碼"
增加使用者
mysqldump –u root –p opt資料庫名>備份檔案名
備份資料庫(在mysql/bin)
mysql –u root –p < batchfile (例如備份檔案名)
使用批處理
mysql.server start
啟動伺服器
mysql.server stop
停止伺服器
msql.serverlog
2、查詢命令
select version()
查詢版本號碼
select current_date
查詢當前日期
3、顯示命令
show databases
顯示資料庫列表
show tables 顯示庫中的資料表
describe 表名 顯示資料表的結構
select * from 表名 顯示表中的記錄
select what_to_select from which table [whereconditions_to_satisfy and (or) where conditions_to_satisfy] 從一個表中檢索資料『滿足條件』
select 欄位1,欄位2,… from 表名 顯示特定列的值
select * from 表名 order by 欄位名 排序行
select 欄位1,包含欄位2的運算式as 新欄位 from 表名 欄位值運算操作
select 欄位1 is null(is not null) 空值操作
Select*from表名where欄位名like(not like) “ 字元”
註: 允許使用“_”匹配任何單個字元, 而“%” 匹配任意數目字元 模式比對
Select * from表名where欄位名regexp(not regexp)或者rlike(not rlike) “.”匹配任何單個的字元 一個字元類[…]匹配方框內任何字元。例如[a],[asd],[az] 匹配任何小寫字母,[09] 匹配任何數
字。 “*”匹配零個或者多個在它前面的東西。 Regex區分大小寫[aA] 。 如果它出現在被測試值的任何地方,模式都匹配。 定位,在模式開始處用“^”,結尾處用“$”,例如“^b”
擴充Regex
Select count(*) from 表名
Select 欄位名,count(*) from 表名 group by 欄位名 行計數
4、編輯命令
use database 庫名
使用的資料庫
create database 庫名
建立資料庫
create table 表名
在資料庫中建立表
insert into表名values (“data”,”data”)
向表中添加記錄
Load data infile “/path/filename” intotable 表名
從檔案中向表添加資料, 檔案每行包括一條記錄, 用定位器(tab) 把值分開。
drop database 庫名
刪除資料庫
drop table 表名
刪除資料庫中的表
delete from表名where
刪除資料庫表中的記錄
Update表名set欄位=”值” wherewhereconditions_to_satisfy
更新資料庫表中記錄的值