MySQL
發(fā)展壯大離不開廣大客戶長期以來的信賴與支持,我們將始終秉承“誠信為本、服務(wù)至上”的服務(wù)理念,堅持“二合一”的優(yōu)良服務(wù)模式,真誠服務(wù)每家企業(yè),認(rèn)真做好每個細(xì)節(jié),不斷完善自我,成就企業(yè),實(shí)現(xiàn)共贏。行業(yè)涉及生料攪拌車等,在成都網(wǎng)站建設(shè)、全網(wǎng)營銷推廣、WAP手機(jī)網(wǎng)站、VI設(shè)計、軟件開發(fā)等項目上具有豐富的設(shè)計經(jīng)驗(yàn)。
查看表結(jié)構(gòu)簡單命令。
一、簡單描述表結(jié)構(gòu),字段類型desc
tabl_name;
顯示表結(jié)構(gòu),字段類型,主鍵,是否為空等屬性,但不顯示外鍵。
二、查詢表中列的注釋信息
select
*
from
information_schema.columns
where
table_schema
=
'db'
#表所在數(shù)據(jù)庫
啟動,關(guān)閉MySQL
在CMD中輸入: net start mysql
在服務(wù)管理器中啟動,關(guān)閉.
MySQL登錄在CMD中輸入
mysql –h localhost –u root -p
查看數(shù)據(jù)庫: show databases;
使用數(shù)據(jù)庫: use db_name;
查看表: show tables;
查看表結(jié)構(gòu): describe table_name;要是不想用命令就在安裝MYSQL的瀏覽器,直接在里面打開看就好了
mysql中查看一個表內(nèi)容有幾種方法,主要介紹用工具直接查看,還有用語句查看。
工具:mysql 5.6
工具查看:
1、以Navicat Premium軟件為例,打開軟件,登錄到指定數(shù)據(jù)庫。如圖登錄到localhost(本地)服務(wù)器下的badkano_test數(shù)據(jù)庫。
2、點(diǎn)擊badkano_test下的“表”,會出現(xiàn)table的列表,右鍵點(diǎn)擊要查看的表,然后選擇“打開表”或“打開表(快速)”,都可以瀏覽表中內(nèi)容。
3、瀏覽結(jié)果:
語句查看:
1、同樣使用工具登錄到指定數(shù)據(jù)庫。
2、然后依次點(diǎn)擊上方的查詢-新建查詢。
3、彈出的文本框中,輸入sql語句:
select?*?from?student;
4、查詢結(jié)果:
MySQL
查看表結(jié)構(gòu)簡單命令。
一、簡單描述表結(jié)構(gòu),字段類型desc
tabl_name;
顯示表結(jié)構(gòu),字段類型,主鍵,是否為空等屬性,但不顯示外鍵。
二、查詢表中列的注釋信息
select
*
from
information_schema.columns
where
table_schema
=
'db'
#表所在數(shù)據(jù)庫
and
table_name
=
'tablename'
;
#你要查的表
三、只查詢列名和注釋
select
column_name,
column_comment
from
information_schema.columns
where
table_schema
='db'
and
table_name
=
'tablename'
;
四、#查看表的注釋
select
table_name,table_comment
from
information_schema.tables
where
table_schema
=
'db'
and
table_name
='tablename'
ps:二~四是在元數(shù)據(jù)表中查看,我在實(shí)際操作中,常常不靈光,不知為什么,有了解的大俠請留印。
五、查看表生成的DDL
show
create
table
table_name;