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