(select * from T_COMMON_USER where userID=9)
union
select * FROm T_COMMON_USER where userID<>9
这样联合查询的话排序会按照默认的ID主键来排序
(select * from T_COMMON_USER where userID=9)
union all
select * FROm T_COMMON_USER where userID<>9
这样联合查询的话排序第一条记录就是userID=9,就达到了目的了。
不过要保证联合查询里面的数据不会重复哦。 union all 没有distinct的功能哦。