(select t1.goods_id  goods_id from 1dcq_goods t1 order by t1.goods_id )
UNION all

(select t2.goods_id  goods_id from 1dcq_goods t2 order by t2.goods_id desc )

如上sql语句,结果如下,可以看出是没有顺序的:

MySQL union all排序问题

下面语句:

(select t1.goods_id  goods_id from 1dcq_goods t1 order by t1.goods_id limit 999999999 )
UNION all
(select t2.goods_id  goods_id from 1dcq_goods t2 order by t2.goods_id desc limit 999999999)

结果如下,可以看出是排序的,一个升序,一个降序,然后合并:

MySQL union all排序问题

可见"limit"关键字不能少!

相关文章:

  • 2022-12-23
  • 2021-05-24
  • 2022-12-23
  • 2021-04-01
  • 2021-07-01
  • 2021-08-18
  • 2022-12-23
  • 2021-08-30
猜你喜欢
  • 2021-08-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-27
  • 2022-12-23
相关资源
相似解决方案