方法:
員工經(jīng)過長期磨合與沉淀,具備了協(xié)作精神,得以通過團(tuán)隊(duì)的力量開發(fā)出優(yōu)質(zhì)的產(chǎn)品。創(chuàng)新互聯(lián)公司堅(jiān)持“專注、創(chuàng)新、易用”的產(chǎn)品理念,因?yàn)椤皩W⑺詫I(yè)、創(chuàng)新互聯(lián)網(wǎng)站所以易用所以簡單”。公司專注于為企業(yè)提供成都做網(wǎng)站、網(wǎng)站設(shè)計(jì)、微信公眾號開發(fā)、電商網(wǎng)站開發(fā),微信小程序,軟件按需制作等一站式互聯(lián)網(wǎng)企業(yè)服務(wù)。
查看數(shù)據(jù)庫表的創(chuàng)建時(shí)間可以在information_schema中查看
information_schema數(shù)據(jù)庫表說明:
schemata表:提供了當(dāng)前mysql實(shí)例中所有數(shù)據(jù)庫的信息。是show
databases的結(jié)果取之此表。
tables表:提供了關(guān)于數(shù)據(jù)庫中的表的信息(包括視圖)。詳細(xì)表述了某個(gè)表屬于哪個(gè)schema,表類型,表引擎,創(chuàng)建時(shí)間等信息。是show
tables
from
schemaname的結(jié)果取之此表。
數(shù)據(jù)庫表的創(chuàng)建時(shí)間在tables表中的create_time字段
select create_time from tables where table_schema='數(shù)據(jù)庫名' and table_name='表名';
將上面的數(shù)據(jù)庫名以及表名替換為所要查詢的數(shù)據(jù)即可。
第一步:點(diǎn)擊打開表左上角的“文件”;
第二步:選擇“設(shè)計(jì)表”;
第三步:此時(shí)就會彈出“數(shù)據(jù)類型”頁面。之后點(diǎn)擊“文件”的“打開表”就可以返回到數(shù)據(jù)列表頁面。
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;
使用以下命令吧
desc?表名
或者
show?create?table?表名;
請采納!
MySQL? SHOW COLUMNS FROM 表名稱
舉個(gè)栗子:
SHOW COLUMNS FROM ldcode ;
結(jié)果輸出如圖
pg? SELECT * FROM INFORMATION_SCHEMA.COLUMNS T WHERE T.TABLE_CATALOG='用戶角色名' AND TABLE_NAME='表名稱'
舉個(gè)栗子:
SELECT table_schema,table_name,column_name,udt_name,character_maximum_length,data_type,ordinal_position
FROM information_schema.columns t
WHERE t.table_catalog='actuarial'
AND table_name ='ldcode'
order by ordinal_position ;
結(jié)果輸出如圖
use 數(shù)據(jù)庫名
show tables就能看到這個(gè)庫中所有的表
或者更直接一點(diǎn),你到mysql 的data文件夾下看看,有多少個(gè)文件夾就有多少個(gè)庫,看看有多少個(gè)不同的文件名,就有多少個(gè)表
//看當(dāng)前使用的是哪個(gè)數(shù)據(jù)庫 ,如果你還沒選擇任何數(shù)據(jù)庫,結(jié)果是NULL。mysqlselect database(); +------------+ | DATABASE() | +------------+ | menagerie ?| +------------+
如何查看Mysql中有哪些數(shù)據(jù)庫和表
我想要知道自己的Mysql中有哪些數(shù)據(jù)庫和表,該如何查看?
2006-6-20 02:22 lcy234
show databases;use databaseName;show tables;
MySQL(發(fā)音為"my ess cue el",不是"my sequel")是一種開放源代碼的關(guān)系型數(shù)據(jù)庫管理系統(tǒng)(RDBMS),MySQL數(shù)據(jù)庫系統(tǒng)使用最常用的數(shù)據(jù)庫管理語言--結(jié)構(gòu)化查詢語言(SQL)進(jìn)行數(shù)據(jù)庫管理。