簡體   English   中英

使用mysql select語句從兩個表中堆疊行

[英]Stacking up rows from tow tables using mysql select statement

我有兩個表,希望將它們連接在一起,以便可以一起查詢它們。 無論如何,我能做到這一點嗎?

為了便於說明,請參見下圖。

表結構

請注意,time_enrolled在兩個表上都遵循該模式

嘗試這個 :

Select
id,name,age,time_enrolled,date_joined, null as occupation from students
union
select
id,name,null as age,time_enrolled,null as date_joined, occupation
from parents

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM