SQL语句问题, 如何筛选出不同表格里的不同列,如下:

如下图片中的两个不同的表 , 我想筛选出表一中NAME列的peter
2025-01-04 02:48:22
推荐回答(1个)
回答1:

Select * from Student_1 where name = 'Peter' 
union all 
Select * from Student_2 where name = 'Peter'