作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何从表中获取count_id和rating_evarate?
我想计算 ID 并从下表中获取评分。
我怎样才能在 mysql 中做到这一点。
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `rating`
-- ----------------------------
DROP TABLE IF EXISTS `rating`;
CREATE TABLE `rating` (
`id` int(11) NOT NULL,
`rating` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of rating
-- ----------------------------
INSERT INTO `rating` VALUES ('1', '5');
INSERT INTO `rating` VALUES ('2', '0');
INSERT INTO `rating` VALUES ('3', '0');
INSERT INTO `rating` VALUES ('4', '0');
INSERT INTO `rating` VALUES ('2', '0');
INSERT INTO `rating` VALUES ('1', '0');
最佳答案
你可以试试这个:
SELECT ID
, COUNT(ID) Count_ID
, AVG(Rating) AS rating_average
FROM rating
GROUP BY ID;
关于mysql - 如何从表中获取 count_id 和 rating_evarate?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18029373/
我是一名优秀的程序员,十分优秀!