mysql中怎么查询表中的字段个数

mysql中怎么查询表中的字段个数,第1张

方法一,在你的程序中直接

desc tablename

然后总行数就是你的字段数。

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>

方法二,通过系统表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>

你试试:

select order_number as num,order_time as time from order where order_phone='号码' group by order_phone


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7335592.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-04
下一篇 2023-04-04

发表评论

登录后才能评论

评论列表(0条)

保存