select device_name, device_type, attributes, longitude, latitude from t_device longitude BETWEEN 112.991904582343 and 150.991904582343 and latitude BETWEEN 28.2216036697883 and 58.2216036697883报错
时间: 2024-03-01 13:51:07 浏览: 62
Object_Attributes.zip_WPF 界面_wpf界面
这段代码存在语法错误,请检查 WHERE 子句的位置是否正确,应该将其放在 FROM 和 JOIN 子句之后。正确的代码应该是:
```
SELECT device_name, device_type, attributes, longitude, latitude
FROM t_device
WHERE longitude BETWEEN 112.991904582343 AND 150.991904582343
AND latitude BETWEEN 28.2216036697883 AND 58.2216036697883;
```
这样可以查询 t_device 表中经度在 [112.991904582343, 150.991904582343],纬度在 [28.2216036697883, 58.2216036697883] 范围内的设备名称、设备类型、属性、经度和纬度。
阅读全文