RGeo PostGIS 多表查询



以下查询作为原始 sql 运行良好,但由于它命中 2 个模型,我不确定如何在活动记录中构造它......

sql =  "SELECT spots.*
              FROM spots, areas 
              WHERE areas.area = '#{@area.area}'
              AND shape && lonlat
              AND ST_Contains(shape,lonlat);"

我该如何构建它?这不是一个加入,所以...

谢谢!

您可以通过这种方式生成相同的 SQL:

Spot.from("spots, areas")
    .where("areas.area = ?",@area.area)
    .where("shape && lonlat")
    .where("ST_Contains(shape,lonlat)")

但是这样你就不会使用ActiveRecord最擅长的东西,比如急切的负载和关系。要获得相同的结果,您可以这样做:

在模型中:

Spot < ActiveRecord::Base
    belongs_to :area
end
Area < ActiveRecord::Base
end

和查询:

Spot.joins(:area).where(areas: {area: @area.area})

相关内容

  • 没有找到相关文章

最新更新