当前位置:   article > 正文

PG内两表JOIN查询_pg join

pg join

在PostgreSQL上对SDB内的两个集合进行关联(JOIN)查询。要求如下:
1.为两个集合在PG内创建两张外表;
2.查看创建的两张外表的表结构;
3.JOIN关联查询需要走索引;

创建两张外表:

CREATE FOREIGN TABLE student 
(
 sid int,
sname text,
sage text,
ssex text,
cid text,
sprovince text,
scity text,
sphone text,
semail text
) 
SERVER sdb_server
OPTIONS ( collectionspace 'pratice4', collection 'student', decimal 'on' );
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

CREATE FOREIGN TABLE class 
(
cid            int,
cname          text,
avgChinese     text,
avgMath        text,
avgsEnglish    text,
avgsBiology    text,
avgsChemistry  text,
avgsPhysics        text
) 
SERVER sdb_server
OPTIONS ( collectionspace 'pratice4', collection 'class', decimal 'on' );
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

查看两张表的结构:

\d student
\d class
  • 1
  • 2

两表内JOIN关联查询

创建索引

var db=new Sdb()
db.pratice4.student.createIndex("cidIdx",{cid:1},false,false);
db.listIndexes()
  • 1
  • 2
  • 3

关联查询:

select s.sid,s.sname,c.cname from student s inner join class c on CAST(s.cid AS int)=c.cid limit 20;
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/597518
推荐阅读
相关标签
  

闽ICP备14008679号