需要用到的工具:Mysql數(shù)據(jù)庫,Navicate for mysql,步驟如下:
創(chuàng)新互聯(lián)自2013年創(chuàng)立以來,公司以成都網(wǎng)站設(shè)計、做網(wǎng)站、成都外貿(mào)網(wǎng)站建設(shè)公司、系統(tǒng)開發(fā)、網(wǎng)絡(luò)推廣、文化傳媒、企業(yè)宣傳、平面廣告設(shè)計等為主要業(yè)務(wù),適用行業(yè)近百種。服務(wù)企業(yè)客戶上千多家,涉及國內(nèi)多個省份客戶。擁有多年網(wǎng)站建設(shè)開發(fā)經(jīng)驗。為企業(yè)提供專業(yè)的網(wǎng)站建設(shè)、創(chuàng)意設(shè)計、宣傳推廣等服務(wù)。 通過專業(yè)的設(shè)計、獨特的風(fēng)格,為不同客戶提供各種風(fēng)格的特色服務(wù)。
1、首先打開Navicate,連接Mysql數(shù)據(jù)庫,點擊圖中框中的Mysql數(shù)據(jù)庫右鍵即可。
2、Mysql數(shù)據(jù)庫右鍵之后,然后在出現(xiàn)的菜單欄選擇在數(shù)據(jù)庫中查找選項進(jìn)入。
3、點擊在數(shù)據(jù)庫中查找之后,進(jìn)入新的界面,輸入要查找的關(guān)鍵字或詞語。
4、輸入完成之后,然后點擊右側(cè)的查找按鈕即可完成。
5、然后就可以看到查找結(jié)果了,這樣就解決了問題。
select CONCAT(COLUMN_NAME ,',') from information_schema.COLUMNS where table_name = '表名' and table_schema = '庫名';
TABLE 語句
具體語法:TABLE table_name [ORDER BY column_name] [LIMIT number [OFFSET number]]
其實從語法上看,可以排序,也可以過濾記錄集,不過比較簡單,沒有 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í)行計劃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)
其實可以看到 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)
那其實從上面簡單的例子可以看到 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 有兩個字段,必須同時滿足 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)
注意:這里如果過濾的字段數(shù)量和子表數(shù)量不一致,則會報錯。
一個表一個表,一個字段一個字段的去查,比如:select
*
from
表1
where
字段1=值
把表導(dǎo)入到sql文件里面,然后打開這個文件,用"查找"的功能找這個值。但是如果表和數(shù)據(jù)庫很大的話,恐怕也不容易導(dǎo)出和打開這個sql文件。