列表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)
相关文章
相关标签/搜索