Nếu tôi đặt câu hỏi và thành thật mà nói thì tôi không hiểu, bạn đang tìm kiếm một công ty hợp nhất?
select a,b,c,0 as e,0 as f, test,data from table1
union
select a,b,c,e,f, test,data from table2
union
select a,b,c,0 as e,0 as f, test,data from table3
chỉnh sửa bao gồm e và f
chỉnh sửa2 Bạn sẽ cần thêm mệnh đề where trước mỗi liên hiệp
select a,b,c,0 as e,0 as f, test,data from table1
where test= 1 and data =1 and id =0
union
select a,b,c,e,f, test,data from table2
where test= 1 and data =1 and id =0
union
select a,b,c,0 as e,0 as f, test,data from table3
where test= 1 and data =1 and id =0