Mysql
 sql >> Database >  >> RDS >> Mysql

MYSQL:concatena due tabelle

select * from table_a where actid = 17
union all
select * from table_b where actid = 17

Potresti (o meno) dover fare qualcosa per evitare che gli ID siano univoci, ad esempio

select 'Student', table_a.* from table_a where actid = 17
union all
select 'Faculty', table_b.* from table_b where actid = 17