avatar
m*r
1
Table A (org_zip, dest_zip), Table zip(zipcode, city, state)
How to get
orig_city, orig_state, dest_city, dest_state
thanks,
avatar
c*g
2
just try to give you some ideas.
Maybe wrong.
first get the org_city and org_state then use another select to get des_city
and state
Table A (org_zip, dest_zip), Table zip(zipcode, city, state)
select zip.city as org_city ,zip.state as org_state, A.dest_zip into table C
from A,zip
where A.org_zip=zip.zipcode;
select C.city,C.state,zip.city as des_city, zip.state as des_state
from C ,zip
where c.dest_zip=zip.zipcode;
avatar
w*n
3
select org_zip,orig_state=state.zip1, dest_city=city.zip2,dest_state=state.
zip2
from A , zip as zip1, zip as zip2
where A.org_zip=zip1.zipcode and A.dest_zip=zip2.zipcode

【在 m***r 的大作中提到】
: Table A (org_zip, dest_zip), Table zip(zipcode, city, state)
: How to get
: orig_city, orig_state, dest_city, dest_state
: thanks,

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。