方法一,在你的程序中直接
濠江ssl適用于網(wǎng)站、小程序/APP、API接口等需要進行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為創(chuàng)新互聯(lián)的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:028-86922220(備注:SSL證書合作)期待與您的合作!
desc tablename
然后總行數(shù)就是你的字段數(shù)。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
mysql desc ysks;
+-------+---------------+-----
| Field | Type | Null
+-------+---------------+-----
| 單號 | int(11) | YES
| 金額 | decimal(10,2) | YES
| 已收 | decimal(10,2) | YES
| 日期 | bigint(20) | YES
| 名稱 | varchar(10) | YES
| 余額 | decimal(10,2) | YES
| 備注 | varchar(10) | YES
| 品名 | varchar(10) | YES
+-------+---------------+-----
8 rows in set (0.06 sec)
mysql select FOUND_ROWS();
+--------------+
| FOUND_ROWS() |
+--------------+
| 8 |
+--------------+
1 row in set (0.06 sec)
mysql
方法二,通過系統(tǒng)表information_schema.`COLUMNS` ( mysql5以上版本支持)
mysql select count(*) from information_schema.`COLUMNS`
- where TABLE_SCHEMA='csdn'
- and TABLE_NAME='ysks';
+----------+
| count(*) |
+----------+
| 8 |
+----------+
1 row in set (0.06 sec)
mysql
命令行下用 show columns from [table]
會得到如 xx rows in set (0.00 sec)
或者:
$sql="select * from article where 0";
$result = mysql_query($sql);
echo mysql_num_fields($result);
再或者:
desc [table]
TABLE 語句
具體語法:TABLE table_name [ORDER BY column_name] [LIMIT number [OFFSET number]]
其實從語法上看,可以排序,也可以過濾記錄集,不過比較簡單,沒有 SELECT 那么強大。
示例 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ù)量不一致,則會報錯。
用輔助工具,就用desc?table_name;或者是show?create?table?table_name;
show?create?table?table_name結(jié)果如下:
desc?table_name結(jié)果如下:
MySQL 是一個關(guān)系型數(shù)據(jù)庫,由瑞典?MySQL AB 公司開發(fā),目前屬于?Oracle?旗下公司。MySQL 最流行的關(guān)系型數(shù)據(jù)庫管理系統(tǒng),在 WEB 應(yīng)用方面 MySQL 是最好的 RDBMS (Relational Database Management System,關(guān)系數(shù)據(jù)庫管理系統(tǒng)) 應(yīng)用軟件之一。MySQL 是一種關(guān)聯(lián)數(shù)據(jù)庫管理系統(tǒng),關(guān)聯(lián)數(shù)據(jù)庫將數(shù)據(jù)保存在不同的表中,而不是將所有數(shù)據(jù)放在一個大倉庫內(nèi),這樣就增加了速度并提高了靈活性。MySQL 所使用的 SQL 語言是用于訪問數(shù)據(jù)庫的最常用標(biāo)準(zhǔn)化語言。
MySQL 軟件采用了雙授權(quán)政策(本詞條"授權(quán)政策"),它分為社區(qū)版和商業(yè)版,由于其體積小、速度快、總體擁有成本低,尤其是開放源碼這一特點,一般中小型網(wǎng)站的開發(fā)都選擇 MySQL 作為網(wǎng)站數(shù)據(jù)庫。由于其社區(qū)版的性能卓越,搭配?PHP?,Linux和?Apache?可組成良好的開發(fā)環(huán)境,經(jīng)過多年的web技術(shù)發(fā)展,在業(yè)內(nèi)被廣泛使用的一種web服務(wù)器解決方案之一,稱之為LAMP。
MySQL是一個開放源碼的小型關(guān)聯(lián)式數(shù)據(jù)庫管理系統(tǒng),開發(fā)者為瑞典MySQL AB公司。目前MySQL被廣泛地應(yīng)用在Internet上的中小型網(wǎng)站中。由于其體積小、速度快、總體擁有成本低,尤其是開放源碼這一特點,許多中小型網(wǎng)站為了降低網(wǎng)站總體擁有成本而選擇了MySQL作為網(wǎng)站數(shù)據(jù)庫。