0
我有一個模型定義。我想在該模型的postgres中進行高級選擇查詢。續集在哪裏作爲生的條件
原始查詢應該是這樣的:
SELECT
6371 * acos(
cos(
radians("+CustomerLat+")
) * cos(radians(sto.lat)) * cos(
radians(sto.lng) - radians("+CustomerLng+")
) + sin(
radians("+CustomerLat+")
) * sin(radians(sto.lat))
) AS distance
FROM
stores sto
ORDER BY
distance ASC
LIMIT 1
我能做到這一點與sequelize直接在模型上,而不在原這樣做呢?
Stores
.findAll()
.then(function(res){ //****// })