通过 SQL 代码计算不同组的数量?
说我只有 2 列数据...
Postcode Sold date
LE14 6QR 01/01/2011
我怎么说...为每个邮政编码显示该地区房屋每次出售的日期。
EG 如果该邮政编码出现 14 次,它会列出每个日期吗?
谢谢,
say I had just 2 columns of data....
Postcode Sold date
LE14 6QR 01/01/2011
How could I say...display for each postcode the date for each time a house in that area has been sold.
E.G If that postcode occurs 14 times, it would list each of the dates?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
从您的描述来看,您似乎想列出表的内容,因此您可以执行以下操作:
如果您不想重复日期,则可以执行以下操作:
From you description it sounds like you want to list the contents of the table, so you can do:
If you do not want duplicate dates, you can do: