1.查看數(shù)據(jù)庫(kù),選中使用數(shù)據(jù)庫(kù),并查看數(shù)據(jù)庫(kù)表,具體操作命令如下:
創(chuàng)新互聯(lián)是專業(yè)的北海街道網(wǎng)站建設(shè)公司,北海街道接單;提供網(wǎng)站設(shè)計(jì)制作、成都網(wǎng)站設(shè)計(jì),網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行北海街道網(wǎng)站開發(fā)網(wǎng)頁(yè)制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來合作!
show databases;
use student;
show tables;
2.選擇student數(shù)據(jù)庫(kù)中的一張表stu_score,查看數(shù)據(jù)庫(kù)表數(shù)據(jù),并利用explain分析數(shù)據(jù)庫(kù)表,如下圖所示:
select * from stu_score;
explain select * from stu_score;
3.查看數(shù)據(jù)庫(kù)使用索引的情況,使用命令:
show status like 'Handler_read%';
4.用于分析和存儲(chǔ)表的關(guān)鍵字,分析的結(jié)果可以得到精準(zhǔn)的信息,利用命令analyze,
analyze table stu_score;
5.檢查數(shù)據(jù)庫(kù)表stu_score,檢查表是否有錯(cuò)誤,利用命令:
check table stu_score;
6.優(yōu)化數(shù)據(jù)庫(kù)表,利用命令:
optimize table stu_score;
擴(kuò)展資料:
可以使用命令行工具管理 MySQL 數(shù)據(jù)庫(kù)(命令 mysql 和 mysqladmin),也可以從 MySQL 的網(wǎng)站下載圖形管理工具 MySQL Administrator, MySQL Query Browser 和 MySQL Workbench。
phpMyAdmin是由 php 寫成的 MySQ L資料庫(kù)系統(tǒng)管理程程序,讓管理者可用 Web 界面管理 MySQL 資料庫(kù)。
phpMyBackupPro也是由 PHP 寫成的,可以透過 Web 界面創(chuàng)建和管理數(shù)據(jù)庫(kù)。它可以創(chuàng)建偽 cronjobs,可以用來自動(dòng)在某個(gè)時(shí)間或周期備份 MySQL 數(shù)據(jù)庫(kù)。
另外,還有其他的 GUI 管理工具,例如 mysql-front 以及 ems mysql manager,?navicat等等。
一般情況下,mysql會(huì)默認(rèn)提供多種存儲(chǔ)引擎,你可以通過下面的查看:
看你的mysql現(xiàn)在已提供什么存儲(chǔ)引擎:
mysql
show
engines;
看你的mysql當(dāng)前默認(rèn)的存儲(chǔ)引擎:
mysql
show
variables
like
'%storage_engine%';
你要看某個(gè)表用了什么引擎(在顯示結(jié)果里參數(shù)engine后面的就表示該表當(dāng)前用的存儲(chǔ)引擎):
mysql
show
create
table
表名;
mysql中顯示一個(gè)表中的數(shù)據(jù):
查看所有表
show tables
查看表中內(nèi)容
select * from table_name
查看當(dāng)前使用的數(shù)據(jù)庫(kù),可使用如下命令
mysql select database(); #使用函數(shù)database()
mysql show tables; #列頭信息中可看出當(dāng)前使用的db,格式為:Tables_in_[db_name]
mysql status; #注意結(jié)果中的"Current database:"信息
查看系統(tǒng)中有哪些數(shù)據(jù)庫(kù),
mysql show databases;
更換當(dāng)前使用的數(shù)據(jù)庫(kù),
mysql use db_name;
返回當(dāng)前數(shù)據(jù)庫(kù)下的所有表的名稱
mysql show tables;
或者直接用如下命令
mysql show tables from db_name;
查看表結(jié)構(gòu),可使用如下命令
mysql desc 表名;
mysql describe 表名;
mysql show columns from 表名;
mysql show create table 表名;
或者,
mysql use information_schema
mysql select * from columns where table_name='表名';
15個(gè) MySQL 菜鳥問題
問題1:你如何確定 MySQL 是否處于運(yùn)行狀態(tài)?
答案: Debian 上運(yùn)行命令 service mysql status,在RedHat 上運(yùn)行命令 service mysqld status。然后看看輸出即可。
問題2:如何開啟或停止 MySQL 服務(wù)?
答案:運(yùn)行命令 service mysqld start 開啟服務(wù);運(yùn)行命令 service mysqld stop 停止服務(wù)。
問題3:如何通過 Shell 登入 MySQL?
答案:運(yùn)行命令 mysql -u root -p
問題4:如何列出所有數(shù)據(jù)庫(kù)?
答案:運(yùn)行命令 show databases;
問題5: 如何切換到某個(gè)數(shù)據(jù)庫(kù)并在上面工作?
答案:運(yùn)行命令 use database_name; 進(jìn)入名為 database_name 的數(shù)據(jù)庫(kù)。
問題6:如何列出某個(gè)數(shù)據(jù)庫(kù)內(nèi)所有表?
答案:在當(dāng)前數(shù)據(jù)庫(kù)運(yùn)行命令 show tables;
問題7:如何獲取表內(nèi)所有 Field 對(duì)象的名稱和類型?
答案:運(yùn)行命令 describe table_name;
問題8:如何刪除表?
答案:運(yùn)行命令 drop table table_name;
問題9:如何刪除數(shù)據(jù)庫(kù)?
答案:運(yùn)行命令 drop database database-name;
問題10:如何查看表內(nèi)所有數(shù)據(jù)?
答案:運(yùn)行命令 select * from table_name;
問題11:如何從表(比如 oc_users )中獲取一個(gè) field 對(duì)象(比如 uid)的所有數(shù)據(jù)?
答案:運(yùn)行命令 select uid from oc_users;
問題12:假設(shè)你有一個(gè)名為 ‘xyz’ 的表,它存在多個(gè)字段,如 ‘createtime’ 和 ‘engine’。名為 engine 的字段由 ‘Memoty’ 和 ‘MyIsam’ 兩種數(shù)值組成。如何只列出 ‘createtime’ 和 ‘engine’ 這兩列并且 engine 的值為 ‘MyIsam’?
答案:運(yùn)行命令 select create_time, engine from xyz where engine = ”MyIsam”;
問題13:如何列出表 ‘xrt’ 內(nèi) name 域值為 ‘tecmint’,web_address 域值為 ‘tecmint.com’ 的所有數(shù)據(jù)?
答案:運(yùn)行命令 select * from xrt where name = “tecmint” and web_address = “tecmint.com”;
問題14:如何列出表 ‘xrt’ 內(nèi) name 域值不為 ‘tecmint’,web_address 域值為 ‘tecmint.com’ 的所有數(shù)據(jù)?
答案:運(yùn)行命令 select * from xrt where name != "tecmint" and web_address = "tecmint.com";
問題15:如何知道表內(nèi)行數(shù)?
答案:運(yùn)行命令 select count(*) from table_name;