gpt4 book ai didi

php - 按位置显示项目。 MySQL选择

转载 作者:行者123 更新时间:2023-11-29 06:20:49 25 4
gpt4 key购买 nike

我有两个 MySQL 表,“位置”和“项目”:

locations
`id` `name` `address` `latitude` `longitude`

现在我使用 MySQL SELECT,它允许用户输入他们的纬度和经度,并且它将按距离对位置进行排序。效果很完美。

现在我有一个项目列表:

items
`id` `location` `title` `description` `display`

现在,如果该项目的 display = true,我想显示每个位置的项目。我希望这是高效的,因为某些位置没有任何项目,或者没有项目设置为 display = true。

最佳答案

此查询将为您提供按位置排序的商品列表

SELECT items.*, locations.* FROM items JOIN locations ON locations.id = items.location WHERE items.display = 'true' ORDER BY locations.id;

关于php - 按位置显示项目。 MySQL选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3762555/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com