作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想让用户可以看到他们来自哪里以及有多少评论并按国家/地区进行总分组:
这是正确的吗?
<script type='text/javascript'>
google.load('visualization', '1', {'packages': ['geochart']});
google.setOnLoadCallback(drawRegionsMap);
function drawRegionsMap() {
var data = google.visualization.arrayToDataTable([
['Country', 'Politics'],
<?php
$sql = mysql_query("SELECT country FROM comments WHERE userid = '$userid' AND GROUP BY country");
$output = "";
$countpeople = mysql_num_rows($sql);
while( $row = mysql_fetch_array($sql)){
}
echo $output;
?>
]);
var options = {'backgroundColor': '#E9F6FD'};
var chart = new google.visualization.GeoChart(document.getElementById('chart_div'));
chart.draw(data, options);
};
</script>
有没有办法制作 SELECT SUM?
谢谢你的帮助。
最佳答案
在所有发布的代码中,只有查询与此问题相关,因此您需要的查询是:
SELECT country, count(*) as total
FROM comments
WHERE userid = '$userid'
GROUP BY country
关于mysql - 统计数据库中的总数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16120466/
我是一名优秀的程序员,十分优秀!