如何计算表格的列数

How do I count columns of a table(如何计算表格的列数)

本文介绍了如何计算表格的列数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

例如:

tbl_ifo

id | name  | age | gender 
----------------------------
1  | John  |  15 |  Male
2  | Maria |  18 |  Female
3  | Steph |  19 |  Female
4  | Jay   |  21 |  Male

如何使用mysql统计这个表的列数?

How can I count the columns of this table using mysql?

推荐答案

SELECT count(*)
FROM information_schema.columns
WHERE table_name = 'tbl_ifo'

这篇关于如何计算表格的列数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:如何计算表格的列数

基础教程推荐