select t.* from (SELECT IF(@a = convert(approverEuid using utf8) and @b = IFNULL(convert(startDate using utf8),'9999-99-99') and @c = IFNULL(convert(endDate using utf8),'9999-99-99') , @num := @num + 1, @num := 1) -1 AS listsort, @a := approverEuid, @b := IFNULL(startDate,'9999-99-99'), @c := IFNULL(endDate,'9999-99-99'), id, approverEuid,startDate,enddate FROM ga_mid.approver t , (SELECT @num := 0, @a := '',@b := '', @c := '') r where approverEuid = 'EU000000073' ORDER BY id, approverEuid,startDate,enddate) t where t.approverEuid = 'EU000000073'; 和 select t.* from (SELECT IF(@a = convert(approverEuid using utf8) and @b = IFNULL(convert(startDate using utf8),'9999-99-99') and @c = IFNULL(convert(endDate using utf8),'9999-99-99') , @num := @num + 1, @num := 1) -1 AS listsort, @a := approverEuid, @b := IFNULL(startDate,'9999-99-99'), @c := IFNULL(endDate,'9999-99-99'), id, approverEuid,startDate,enddate FROM ga_mid.approver t , (SELECT @num := 0, @a := '',@b := '', @c := '') r ORDER BY id, approverEuid,startDate,enddate) t where t.approverEuid = 'EU000000073'; 的区别
时间: 2024-04-13 16:24:58 浏览: 67
mysql中IFNULL,IF,CASE的区别介绍
这两个查询之间的区别在于是否添加了过滤条件 `where approverEuid = 'EU000000073'`。
在第一个查询中,通过在子查询的 `WHERE` 子句中添加了条件 `where approverEuid = 'EU000000073'`,限制了最终结果集中 `approverEuid` 列的值为 `'EU000000073'`。
而在第二个查询中,没有添加这个过滤条件,因此会返回整个结果集,其中包含所有不同的 `approverEuid` 值。
由于这个过滤条件的存在与否,两个查询的结果集可能会有所不同。第一个查询只返回满足条件的行,而第二个查询返回所有行。如果你只关心 `approverEuid` 为 `'EU000000073'` 的行,那么第一个查询可能更适合你的需求。
请注意,在这两个查询中,排序操作是在子查询中进行的,然后再通过外层查询将结果限制为 `approverEuid = 'EU000000073'` 的行。因此,排序的效果并不会受到过滤条件的影响。
阅读全文