如何把两个sql语句结果 横向合并起来
selectfield1fromtable1wherefield1like*;selectfield2fromtable2wherefield2like*;如何横向合并起...
select field1 from table1 where field1 like * ;
select field2 from table2 where field2 like * ;
如何横向合并起来 union all 用过 是 纵向合并 展开
select field2 from table2 where field2 like * ;
如何横向合并起来 union all 用过 是 纵向合并 展开
1个回答
展开全部
select table1 .field1, table2. field2 from table1
full join table2 on 1=1
full join table2 on 1=1
更多追问追答
追问
同种like筛选语句我成功了,
但是如果 两个表的 like 语句 有区别呢?
追答
select table1 .field1, table2. field2 from table1
full join table2 on 1=1
where table1. field1 like '%...'
and table2. field2 like '%...'
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询