- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 MySQL 中有这个查询
SELECT
@rownum:=@rownum+1 AS rownum,
notifications_posts.from_user AS source,
notifications_posts.on_post_id AS destination,
notifications_posts.in_group_id,
groups.group_name AS group_name,
notifications_posts.on_post_id AS other_record_id,
user_info.first_name,
user_info.last_name,
user_info.user_id,
notifications_posts.date,
posts.title AS 'title',
user_rights.right AS 'right',
'article' AS notification_type
FROM notifications_posts
INNER
JOIN user_info
ON notifications_posts.from_user = user_info.user_id
INNER
JOIN posts
ON posts.id = notifications_posts.on_post_id
INNER
JOIN groups
ON groups.group_id = notifications_posts.in_group_id
INNER
JOIN user_rights
ON user_rights.group_id = notifications_posts.in_group_id AND user_rights.user_id = user_info.user_id
我明白了
为什么我在 rownum
处得到 NULL
?
其次,我需要按该 id 对记录进行分组
GROUP BY rownum;
谁能帮帮我?
最佳答案
我认为最好只对结果进行排序(在 MySQL 中),然后在您的应用程序中添加行号。如果您坚持:
警告:任何以这种方式使用变量的查询都可能在未来版本的 MySQL 中被破坏。
SELECT
@rownum := @rownum+1 AS rownum,
notifications_posts.from_user AS source,
notifications_posts.on_post_id AS destination,
notifications_posts.in_group_id,
groups.group_name AS group_name,
notifications_posts.on_post_id AS other_record_id,
user_info.first_name,
user_info.last_name,
user_info.user_id,
notifications_posts.date,
posts.title AS 'title',
user_rights.right AS 'right',
'article' AS notification_type
FROM
(SELECT @rownum:=0) AS dummy -- initial value
CROSS
JOIN notifications_posts
INNER
JOIN user_info
ON notifications_posts.from_user = user_info.user_id
INNER
JOIN posts
ON posts.id = notifications_posts.on_post_id
INNER
JOIN groups
ON groups.group_id = notifications_posts.in_group_id
INNER
JOIN user_rights
ON user_rights.group_id = notifications_posts.in_group_id
AND user_rights.user_id = user_info.user_id
ORDER BY -- you need
whatever ; -- ORDER BY clause
关于mysql - 使用@rownum :=@rownum+1 AS rownum 枚举 SQL 中的每条记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12578938/
我在 MySQL 中有这个查询 SELECT @rownum:=@rownum+1 AS rownum, notifications_posts.from_user AS source, notifi
SET @rownum := -1; SELECT round(AVG(t.LAT_N),4) FROM ( SELECT @rownum := @rownum + 1 AS
我想知道 rowID 之间的区别和 rowNUM 以及如何在我们的表格中看到这两者。 当我执行此操作时: SELECT * FROM emp WHERE rownum=1 它返回一个查询,但是当我对
我正在查看一个 SQL 查询,它使用 Oracle 的 rownum 伪列来选择行号作为总行数的一部分: ROWNUM/(MAX(ROWNUM) OVER()) 我正在尝试使用通过 jOOQ 编写的查
这个问题在这里已经有了答案: 关闭 10 年前。 社区在 4 个月前 审查了是否重新打开此问题,然后将其关闭: 原始关闭原因未解决 Possible Duplicate: Rownum not wo
为什么以下查询返回“零”记录: SELECT * FROM 记录 WHERE rownum >= 5 AND rownum = 5 而以下查询返回正确的记录: SELECT * FROM 记录 WHE
最近我修复了一些错误:连接条件中有rownum。 像这样:在 t1.id=t2.id 和 rownum 10 总是返回 false。我不知道 ROWNUM<-666 在你的 JOIN 子句中是如何工作
select * from MYTABLE t where EQUIPMENT = 'KEYBOARD' and ROWNUM <= 2 or EQUIPMENT = 'MOUSE' and ROWN
所以我想在 Oracle DB 中选择一系列行。我需要这样做,因为我在表中有数百万行,我想将结果分页给用户(如果您知道在客户端执行此操作的另一种方法,如果重要,我正在使用 JavaFX,但我不认为通过
select * from Schem.Customer where cust='20' and cust_id >= '890127' and rownum between 1 and 2
我的表中有 6442670 条记录,我正在使用以下命令获取它们jdbctemplate 使用行号一次 1000000 个。以下是查询 select * from (select rowNum rn
select * from Schem.Customer where cust='20' and cust_id >= '890127' and rownum between 1 and 2
我有一个带有 group by 和 order by 子句的复杂查询,我需要一个排序的行号 (1...2...(n-1)...n) 与每一行一起返回。使用 ROWNUM(在通过查询的谓词阶段后但在查询
基本上,我想通过使用@rownum 显示表中的行数以及数据,它在第一页上工作得很好,但是当我们转到下一页时,我们又从第一行开始。 查询代码: $sql = "SELECT @rownum:=@rown
我有一个包含 10 000 个元素的表。 IQuerable query = dataRep.Get() .Query(); 我
如何返回特定范围的 ROWNUM值(value)观? 我正在尝试以下操作: select * from maps006 where rownum >49 and rownum 49 and r <
最近看oracle资料的时候,了解rownum的概念,以前只知道对数据库表进行简单的增删改查; 看到了rownum的概念后,突然想到了好多业务场景应该都可以适用的,比如在进行随机发奖的时候, 我
我正在尝试查看客户请求重新激活其 Internet 帐户的频率。 问题是,我们捕获一组有限的数据来分组。所以我的数据集如下。 我正在尝试从第一次创建重新激活请求到它第一次完成计算,一旦完成,完成请求完
我正在尝试查询以仅返回表中的最新行。 最初我在查询中使用了 max(id) 但是当我使用序列并且我的环境是聚集的时,我不能依赖序列作为它的顺序。 所以我决定根据创建时间排序并使用 rownum 选择顶
这是我当前代码的示例: DataSet = [1,2,3,4,5,6,7,8,9]. Sequence = [3,4,5,6]. ReducedDataSet = lists:foldl( fun(S
我是一名优秀的程序员,十分优秀!