Mysql
 sql >> Datenbank >  >> RDS >> Mysql

MYSQL - Verkettet zwei Tabellen

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

Möglicherweise (oder auch nicht) müssen Sie etwas dagegen unternehmen, dass die IDs nicht eindeutig sind, z. B.

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