I have users table. There are three other tables: developers, managers, testers. All of these tables have a foreign key user_id.
I need to find all the users who are either developer or manager. What the sql will look like?
Update: Someone can be both a developer and a manager.