列表sql和單值sql 整成一一對應的列表sql (比原列表sql多一列)

情況1: 列表sql: select 欄名1 from (select 子欄名1 from 表1 where 條件1) temp 單值sql: select 欄名2 from (select 子欄名2 from 表1 where 表1.id = xxx) temp 改造後的sql: select 欄名1, 欄名2 from (select 子欄名1, 子欄名2 from 表1 where 條件1)
相關文章
相關標籤/搜索