Hi all.
I want to display two records.
For eg
select * FROM users WHERE user_id = 5
.
Now i want another row randomly selected from users table but with user_id != 5
Is it possible to do in a single query. I tried using union all but i dnt get two distinct rows.
Thanks