我有一个数据库表。它包含以下各列:
航海|优先|
是否有完成的脚本或显示这些列统计信息的方法?
基本上,我想做的是显示这些列的统计信息。
例如,
例如,cathegory可以具有不同的值:(大陆,
国家,城市,街道)。
优先级可以包含1到10之间的值。
所以我需要显示有多少行,以及每行的不同值。
例如:
4 of the priority 8 rows have 'continent' as catheogry,
43 of the priority 8 rows have 'country' as cathegory,
329 of the priority 8 rows have 'city' as cathegory
这可能吗?
最佳答案
没有内置脚本可以为您做到这一点,但是可以肯定的是,您可以使用SQL获得所有此类信息,这是关系数据库的基本思想。
表中的行数
select count(*) from table;
这个例子
select cathegory, count(cathegory) nbr_of_cathegories_for_prio_8 from table where priority = 8 group by cathegory;
关于php - 显示mysql数据库的统计信息,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12449961/