select * from table_a where actid = 17
union all
select * from table_b where actid = 17
आपको आईडी के अद्वितीय न होने के बारे में कुछ करने की आवश्यकता हो सकती है (या नहीं भी), जैसे कि
select 'Student', table_a.* from table_a where actid = 17
union all
select 'Faculty', table_b.* from table_b where actid = 17