我想随机显示两个限制为10的查询的值。 查询:
(SELECT * from table) UNION (SELECT * from table) limit 0,10
它显示如下
id usertype
1 4
2 4
3 4
4 4
我想展示
id usertype
1 4
2 4
3 2
4 2