查詢MySQL數(shù)據(jù)庫所有表名的SQL命令:
成都創(chuàng)新互聯(lián)是一家專注于網(wǎng)站設(shè)計(jì)、成都網(wǎng)站設(shè)計(jì)與策劃設(shè)計(jì),山陽網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設(shè)十年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:山陽等地區(qū)。山陽做網(wǎng)站價(jià)格咨詢:028-86922220
show tables;
查詢MySQL數(shù)據(jù)庫有表結(jié)構(gòu)的SQL命令:
show create table tblName;
例如:show create table students;
CREATE TABLE `students` (
`sid` char(10) NOT NULL,
`sname` varchar(50) NOT NULL,
`sex` char(1) NOT NULL,
`dob` date NOT NULL,
`phone` varchar(30) DEFAULT NULL,
PRIMARY KEY (`sid`),
KEY `index_tbl1_url` (`phone`(20))
) ENGINE=InnoDB DEFAULT CHARSET=gb2312
用sql獲取數(shù)據(jù)庫中所有的表名的方法:
1、oracle下:select table_name from all_tables;
2、MySQL下:select table_name from information_schema.tables where table_schema='csdb' and table_type='base table';
3、sql server下:select name from sys.tables go
1.查看數(shù)據(jù)庫,選中使用數(shù)據(jù)庫,并查看數(shù)據(jù)庫表,具體操作命令如下:
show databases;
use student;
show tables;
2.選擇student數(shù)據(jù)庫中的一張表stu_score,查看數(shù)據(jù)庫表數(shù)據(jù),并利用explain分析數(shù)據(jù)庫表,如下圖所示:
select * from stu_score;
explain select * from stu_score;
3.查看數(shù)據(jù)庫使用索引的情況,使用命令:
show status like 'Handler_read%';
4.用于分析和存儲(chǔ)表的關(guān)鍵字,分析的結(jié)果可以得到精準(zhǔn)的信息,利用命令analyze,
analyze table stu_score;
5.檢查數(shù)據(jù)庫表stu_score,檢查表是否有錯(cuò)誤,利用命令:
check table stu_score;
6.優(yōu)化數(shù)據(jù)庫表,利用命令:
optimize table stu_score;
擴(kuò)展資料:
可以使用命令行工具管理 MySQL 數(shù)據(jù)庫(命令 mysql 和 mysqladmin),也可以從 MySQL 的網(wǎng)站下載圖形管理工具 MySQL Administrator, MySQL Query Browser 和 MySQL Workbench。
phpMyAdmin是由 php 寫成的 MySQ L資料庫系統(tǒng)管理程程序,讓管理者可用 Web 界面管理 MySQL 資料庫。
phpMyBackupPro也是由 PHP 寫成的,可以透過 Web 界面創(chuàng)建和管理數(shù)據(jù)庫。它可以創(chuàng)建偽 cronjobs,可以用來自動(dòng)在某個(gè)時(shí)間或周期備份 MySQL 數(shù)據(jù)庫。
另外,還有其他的 GUI 管理工具,例如 mysql-front 以及 ems mysql manager,?navicat等等。
查找所有表的語句
select table_name
from information_schema.tables
where table_schema='當(dāng)前數(shù)據(jù)庫'
mysql ?use mysql
Database changed
mysql show tables;
+---------------------------+
| Tables_in_mysql ? ? ? ? ? |
+---------------------------+
| columns_priv ? ? ? ? ? ? ?|
| db ? ? ? ? ? ? ? ? ? ? ? ?|
| event ? ? ? ? ? ? ? ? ? ? |
| func ? ? ? ? ? ? ? ? ? ? ?|
| general_log ? ? ? ? ? ? ? |
| help_category ? ? ? ? ? ? |
| help_keyword ? ? ? ? ? ? ?|
| help_relation ? ? ? ? ? ? |
| help_topic ? ? ? ? ? ? ? ?|
| innodb_index_stats ? ? ? ?|
| innodb_table_stats ? ? ? ?|
| ndb_binlog_index ? ? ? ? ?|
| plugin ? ? ? ? ? ? ? ? ? ?|
| proc ? ? ? ? ? ? ? ? ? ? ?|
| procs_priv ? ? ? ? ? ? ? ?|
| proxies_priv ? ? ? ? ? ? ?|
| servers ? ? ? ? ? ? ? ? ? |
| slave_master_info ? ? ? ? |
| slave_relay_log_info ? ? ?|
| slave_worker_info ? ? ? ? |
| slow_log ? ? ? ? ? ? ? ? ?|
| tables_priv ? ? ? ? ? ? ? |
| time_zone ? ? ? ? ? ? ? ? |
| time_zone_leap_second ? ? |
| time_zone_name ? ? ? ? ? ?|
| time_zone_transition ? ? ?|
| time_zone_transition_type |
| user ? ? ? ? ? ? ? ? ? ? ?|
+---------------------------+
28 rows in set (0.05 sec)
show tables即為顯示當(dāng)前數(shù)據(jù)庫中所有的表。
根據(jù)具體問題類型,進(jìn)行步驟拆解/原因原理分析/內(nèi)容拓展等。
具體步驟如下:/導(dǎo)致這種情況的原因主要是??
TABLE 語句
具體語法:TABLE table_name [ORDER BY column_name] [LIMIT number [OFFSET number]]
其實(shí)從語法上看,可以排序,也可以過濾記錄集,不過比較簡單,沒有 SELECT 那么強(qiáng)大。
示例 1
簡單的建一張很小的表 y1,記錄數(shù)為 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 結(jié)果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 的執(zhí)行計(jì)劃mysql-(ytt/3305)-explain table t1 order by r1 limit 2\G*************************** 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)
其實(shí)可以看到 TABLE 內(nèi)部被 MySQL 轉(zhuǎn)換為 SELECT 了。mysql-(ytt/3305)-show warnings\G*************************** 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)
那其實(shí)從上面簡單的例子可以看到 TABLE 在內(nèi)部被轉(zhuǎn)成了普通的 SELECT 來處理。示例 2應(yīng)用于子查詢里的子表。這里要注意,內(nèi)表的字段數(shù)量必須和外表過濾的字段數(shù)量一致。克隆表 t1 結(jié)構(gòu)mysql-(ytt/3305)-create table t2 like t1;Query OK, 0 rows affected (0.02 sec)
克隆表 t1 數(shù)據(jù)mysql-(ytt/3305)-insert into t2 table t1;Query OK, 10 rows affected (0.00 sec)Records: 10 ?Duplicates: 0 ?Warnings: 0
table t1 被當(dāng)做內(nèi)表,表 t1 有兩個(gè)字段,必須同時(shí)滿足 t2 檢索時(shí)過濾的字段也是兩個(gè)。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)
注意:這里如果過濾的字段數(shù)量和子表數(shù)量不一致,則會(huì)報(bào)錯(cuò)。