当前位置: 代码迷 >> SQL >> 一个简单的多表查询的有关问题,请赐教
  详细解决方案

一个简单的多表查询的有关问题,请赐教

热度:110   发布时间:2016-05-05 15:26:36.0
一个简单的多表查询的问题,请赐教。
table a 中的字段aa,bb,cc
table b 中的字段ee,ff,hh
查询a中的aa,与b中的ee字段,条件是 bb的大小在ff 与hh之间。谢谢。
我的查询语句:
select a.aa, b.ee from table a, b where a.bb between b.ff and b.hh.


------解决方案--------------------
select a.aa, b.ee from a, b where a.bb between b.ff and b.hh

哦,是把table删除,留下from
------解决方案--------------------
select distinct a.aa from a, b where a.bb between b.ff and b.hh
  相关解决方案