图中一个机构下会有很多柜员 我现在可以查到距离最近的柜员 不知道怎么限制只查三个机构
select 柜员 from 柜员表 where 机构 in (select top 3机构 from 机构表)
mysql 不支持select top :( 我用的是mysql
mysql 子查询也不支持limit
select top 3 .............order by .....
mysql 不支持select top :(
@zhaopengnb: select 。。。。 from table limit 3