everyone knows this query:
select * FROM
table1 left join table2 ON {condition}
but is it possible to left join one row from table 2 to a row in table 1 on a random basis? this would be helpful for password updates and a few other things.
In short, I know I can select random records but am not sure if can do random joins