select * from table_a where actid = 17
union all
select * from table_b where actid = 17
Možná budete (nebo nemusíte) muset udělat něco s tím, aby ID nebyla jedinečná, jako například
select 'Student', table_a.* from table_a where actid = 17
union all
select 'Faculty', table_b.* from table_b where actid = 17