I have say 5 tables,
user , t1, t2, t3, t4
user has a field called id.
t1 to t4 all have a corresponding field called user_id, and a field called verification.
Now I need to distinctly(or uniquely) select the user from user table, whose id exists at least once in at least one table among t1 to t4,and where the verification field is true.
From you detail description it looks that you are near solution. The EXISTS and OR need to be used (assuming that TRUE replaced with 1):