如何确定给定 MySQL 表中的列数?
要计算 MySQL 表中的列数,可以使用以下查询:
SELECT count(*) FROM information_schema.columns WHERE table_name = 'table_name'
示例:
考虑下表名为“tbl_info”:
ID | name | age | gender |
---|---|---|---|
1 | John | 15 | Male |
2 | Maria | 18 | Female |
3 | Steph | 19 | Female |
4 | Jay | 21 | Male |
要计算此表中的列数,我们将执行以下查询:
SELECT count(*) FROM information_schema.columns WHERE table_name = 'tbl_info'
此查询将返回“tbl_info”表,在本例中为 4。
以上是MySQL 表有多少列?的详细内容。更多信息请关注PHP中文网其他相关文章!