作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我又一次遇到了 SQL 的问题,我想不通。基于以下情况,我们注意到 user_id 重复了两次,我想将其区分/分组到1 行,但有一种情况我会考虑匿名列,其逻辑是返回 等于 1 的匿名行,我认为不同的列可能只是随机取用它们?任何人都可以启发我吗?感谢您的回应。谢谢。
__________________________
|user_id|anonymous|amount|
--------------------------
| 1234| 1| 100|
| 222| 0| 90|
| 1234| 0| 88|
==========================
**Final answer** should look like this.
__________________________
|user_id|anonymous|amount|
--------------------------
| 1234| 1| 100|
| 222| 0| 90|
==========================
最佳答案
select t.* from your_table t
join
(
select user_id, max(anonymous) as m_anon
from your_table
group by user_id
) x on x.user_id = t.user_id and x.m_anon = t.anonymous
关于mysql - 基于 IF case 的 SQL(阅读详情),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22399644/
我是一名优秀的程序员,十分优秀!