oracl查询两表相同的字段

简介: 学习oracl查询两表相同的字段。

select *

from (select a.modelid, a.metaid, indct_name_ch, type, c.dmodelid
          from table_model a, indct b, table_viewmodel c
         where a.stat_table_id = '8600000002014103107240001'  ---表
           and a.metaid = b.indct_id
           and a.stat_table_id = c.stat_table_id
           and a.modelid = c.modelid
           and a.orgid = c.orgid
           and c.orgid like '8600%'
         order by a.modelid) t2015


 left join

(select a.modelid, a.metaid, indct_name_ch, type, c.dmodelid
    from table_model a, indct b, table_viewmodel c
   where a.stat_table_id = '8600000002015112307320107'
     and a.metaid = b.indct_id
     and a.stat_table_id = c.stat_table_id
     and a.modelid = c.modelid
     and a.orgid = c.orgid
     and c.orgid like '8600%'
   order by a.modelid) t2016
    on t2015.metaid = t2016.metaid


相关文章
|
关系型数据库 索引
DB2查询主键、索引、表约束
DB2查询主键、索引、表约束
813 0
|
Oracle 关系型数据库
查询Oracle字段列的最大值并查询多列数据的实现方法
查询Oracle字段列的最大值并查询多列数据的实现方法
2224 0
数据查询语句:包括SELECT语句、WHERE子句、GROUP BY子句、HAVING子句、ORDER BY子句等,用于从数据表中检索数据。
数据查询语句:包括SELECT语句、WHERE子句、GROUP BY子句、HAVING子句、ORDER BY子句等,用于从数据表中检索数据。
53 1
|
SQL
SQL两张表中有关联id,但是字段名不同查询
SQL两张表中有关联id,但是字段名不同查询
80 0
|
SQL Oracle 关系型数据库
Oracle中的分组查询、子查询、多表连接
Oracle中的分组查询、子查询、多表连接
271 0
Oracle中的分组查询、子查询、多表连接
|
SQL Oracle 关系型数据库
|
SQL 移动开发 Oracle
6-5 Oracle表复杂查询 -子查询
子查询是指嵌入在其它sql语句中的select语句,也叫嵌套查询。
217 0
|
Oracle 关系型数据库
6-4 Oracle表复杂查询 -多表查询
学习了解6-4 Oracle表复杂查询 -多表查询。
154 0
|
关系型数据库 MySQL 数据库
MySQL创建数据库 easyShopping,包括area表、goods表、customer表、orders表、ordersdetall表、test表
MySQL创建数据库 easyShopping,包括area表、goods表、customer表、orders表、ordersdetall表、test表
951 0
MySQL创建数据库 easyShopping,包括area表、goods表、customer表、orders表、ordersdetall表、test表
|
SQL Oracle 关系型数据库
oracle中查看一张表是否有主键,主键在哪个字段上
oracle中查看一张表是否有主键,主键在哪个字段上
下一篇
无影云桌面