當前位置:首頁 » 操作系統 » mysql查看資料庫結構

mysql查看資料庫結構

發布時間: 2023-09-09 06:58:21

⑴ 如何查看mysql有什麼資料庫

1、同時按下鍵盤上的win+r按鍵,調出運行框,並在彈出的運行框中輸入cmd後按下回稿戚車按鍵。

⑵ mysql 怎麼查看創建的資料庫和表

mysql 查看有多少個資料庫,有多少個表,方法如下:

1、圖形界面直接查看:

注意:describe 表名 是 show columns from 表名 的一種快捷方式。

⑶ mysql中查詢資料庫中表名稱和結構的sql語句是什麼啊啊

TABLE 語句

具體語法:TABLE table_name [ORDER BY column_name] [LIMIT number [OFFSET number]]
其實從語法上看,可以排序,也可以過濾記錄集,不咐槐過比較簡單,沒有 SELECT 那麼強大。

示例 1

簡單的建一張很小的表 y1,記錄數為 10 條。表 t1,插入 10 條記做攜錄

  • mysql-(ytt/3305)->create table t1 (r1 int,r2 int);

  • Query OK, 0 rows affected (0.02 sec)

  • mysql-(ytt/3305)->insert into t1

  • with recursive aa(a,b) as (

  • select 1,1

  • union all

  • select a+1,ceil(rand()*20) from aa where a < 10

  • ) select * from aa;

  • Query OK, 10 rows affected (0.00 sec)

  • Records: 10 Duplicates: 0 Warnings: 0

  • 簡單全表掃描mysql-(ytt/3305)->select * from t1;+------+------+| r1 | r2 |+------+------+| 1 | 1 || 2 | 9 || 3 | 9 || 4 | 17 || 5 | 17 || 6 | 16 || 7 | 6 || 8 | 衡胡友1 || 9 | 10 || 10 | 3 |+------+------+10 rows in set (0.00 sec)

  • TABLE 結果mysql-(ytt/3305)->table t1;+------+------+| r1 | r2 |+------+------+| 1 | 1 || 2 | 9 || 3 | 9 || 4 | 17 || 5 | 17 || 6 | 16 || 7 | 6 || 8 | 1 || 9 | 10 || 10 | 3 |+------+------+10 rows in set (0.00 sec)

  • 看下 table 的執行計劃mysql-(ytt/3305)->explain table t1 order by r1 limit 2G*************************** 1. row *************************** id: 1 select_type: SIMPLE table: t1 partitions: NULL type: ALLpossible_keys: NULL key: NULL key_len: NULL ref: NULL rows: 10 filtered: 100.00 Extra: Using filesort1 row in set, 1 warning (0.00 sec)

  • 其實可以看到 TABLE 內部被 MySQL 轉換為 SELECT 了。mysql-(ytt/3305)->show warningsG*************************** 1. row *************************** Level: Note Code: 1003Message: /* select#1 */ select `ytt`.`t1`.`r1` AS `r1`,`ytt`.`t1`.`r2` AS `r2` from `ytt`.`t1` order by `ytt`.`t1`.`r1` limit 21 row in set (0.00 sec)

  • 那其實從上面簡單的例子可以看到 TABLE 在內部被轉成了普通的 SELECT 來處理。示例 2應用於子查詢里的子表。這里要注意,內表的欄位數量必須和外表過濾的欄位數量一致。克隆表 t1 結構mysql-(ytt/3305)->create table t2 like t1;Query OK, 0 rows affected (0.02 sec)

  • 克隆表 t1 數據mysql-(ytt/3305)->insert into t2 table t1;Query OK, 10 rows affected (0.00 sec)Records: 10 Duplicates: 0 Warnings: 0

  • table t1 被當做內表,表 t1 有兩個欄位,必須同時滿足 t2 檢索時過濾的欄位也是兩個。mysql-(ytt/3305)->select * from t2 where (r1,r2) in (table t1);+------+------+| r1 | r2 |+------+------+| 1 | 1 || 2 | 9 || 3 | 9 || 4 | 17 || 5 | 17 || 6 | 16 || 7 | 6 || 8 | 1 || 9 | 10 || 10 | 3 |+------+------+10 rows in set (0.00 sec)

  • 注意:這里如果過濾的欄位數量和子表數量不一致,則會報錯。

⑷ mysql 怎麼查看創建的資料庫和表

方法:
查看資料庫表的創建時間可以在information_schema中查看
information_schema資料庫表說明:
schemata表:提供了當前mysql實例中所有資料庫的信息。是show
databases的結果取之此表。
tables表:提供了關於資料庫中的表的信息(包括視圖)。詳細表述了某個表屬於哪個schema,表類型,表引擎,創建時間等信息。是show
tables
from
schemaname的結果取之此表。
資料庫表的創建時間在tables表中的create_time欄位
select create_time from tables where table_schema='資料庫名' and table_name='表名';
將上面的資料庫名以及表名替換為所要查詢的數據即可。

⑸ mysql怎麼查看錶結構和注釋

MySQL 查看錶結構簡單命令。

一、簡單描述表結構,欄位類型desc tabl_name;
顯示表結構,欄位類型,主鍵,是否為空等屬性,但不顯示外鍵。
二、查詢表中列的注釋信息
select * from information_schema.columns where table_schema = 'db' #表所在資料庫
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:二~四是在元數據表中查看,我在實際操作中,常常不靈光,不知為什麼,有了解的大俠請留印。
五、查看錶生成的DDL show create table table_name;

⑹ 如何查看mysql資料庫中有哪些表

  1. use 資料庫名
    show tables就能看到這個庫中所有的表
    或者更直接一點,你到mysql 的data文件夾下看看,有多少個文件夾就有多少個庫,看看有多少個不同的文件名,就有多少個表

  2. //看當前使用的是哪個資料庫 ,如果你還沒選擇任何資料庫,結果是NULL。mysql>select database(); +------------+ | DATABASE() | +------------+ | menagerie | +------------+

  3. 如何查看Mysql中有哪些資料庫和表

    我想要知道自己的Mysql中有哪些資料庫和表,該如何查看?
    2006-6-20 02:22 lcy234
    show databases;use databaseName;show tables;

linux中怎麼查看mysql資料庫(linux查看資料庫)

mysql-uroot-p輸入root密碼進去即可查看。

具橡銀液梁物體情況簡單說明:

1、顯示資料庫

showdatabases;

2、選擇資料庫

use資料庫名;

3、顯示資料庫中的表

showtables;

4、顯示數據表的結構

describe表名;

5、顯示表中記搏昌錄

SELECT*FROM表名;

6、建庫

createdatabse庫名。

⑻ mysql如何查看資料庫結構

1.在MySQL資料庫中通過show tables命令;查看資料庫中所有數據表
2.在MySQL資料庫中通過desc tablename;查看錶結構

熱點內容
建設銀行如何找回登陸密碼 發布:2025-01-30 16:18:03 瀏覽:231
匿名類java 發布:2025-01-30 16:02:52 瀏覽:337
編譯原理界符的作用 發布:2025-01-30 15:59:08 瀏覽:692
手機的存儲卡異常 發布:2025-01-30 15:55:53 瀏覽:62
我的世界可以創造工會的伺服器 發布:2025-01-30 15:33:59 瀏覽:921
安卓移動手機怎麼領移動會員 發布:2025-01-30 15:26:53 瀏覽:58
eclipse中反編譯 發布:2025-01-30 15:04:58 瀏覽:626
靈犀互娛用的什麼伺服器 發布:2025-01-30 15:04:53 瀏覽:553
開機密碼忘掉如何處理 發布:2025-01-30 15:04:17 瀏覽:613
cs16vip腳本 發布:2025-01-30 15:00:32 瀏覽:567