SQL 查询获取列表中每个元素的前 1 个值
我需要帮助编写返回所有列的查询
select id, city, road1, road2, lat, long
from tbltest
group by id, city, lat, long.
最终结果应该是这样的
谢谢, 帕万
I need help in writing a query which returns me all columns
select id, city, road1, road2, lat, long
from tbltest
group by id, city, lat, long.
The final result should have something like this
Thanks,
Pawan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
虽然很奇怪,但该表有重复的 id 列,这里的查询将显示您需要的结果:
Although it is weird, that the table has duplicate id columns here is the query that would show the result you need:
使用公用表表达式
Using Common Table Expressions