如何从mysql表中获取不同的记录?
我有一个像这样的表 student
id | name | zip
1 | abc | 1234
2 | xyz | 4321
3 | asd | 1234
我想获取所有记录,但邮政编码不应重复。因此,对于上述表记录,应获取第 1 号和第 2 号记录。不会提取 3 号记录,因为它的邮政编码已在 1 号记录中
I have a table student like this
id | name | zip
1 | abc | 1234
2 | xyz | 4321
3 | asd | 1234
I want to get all records but zip code should not be repeated. So In case of above table records, record No 1 and 2 should be fetched. Record No. 3 will not be fetched because it has a zip code which is already in record No. 1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
以下查询将仅选择不同的“zip”字段。
以下查询将选择所有字段以及不同的 zip 字段。
The following query will only select distinct 'zip' field.
The following query will select all fields along with distinct zip field.
尝试
或
TRY
OR
尽管在 MySQL 中你可以逃脱:
我会选择:
Altough in MySQL you can get away with:
I would choose:
因为想必其他列也有一些兴趣......
(或者您可以使用 最大连接技巧)
更新
Oracle 现在已从链接页面中删除了最大连接技巧 - 但它是 在其他地方描述 互联网
Since presumably the other columns are of some interest....
(or you could use the max-concat trick)
update
Oracle have now removed the max concat trick from the linked page - but it is described elsewhere on the internet
尝试使用
Try Using
如果我像下面这样使用有什么问题吗?
Is there any problem if I use as this below?