标签: sql postal-code
我需要一个SQL脚本来查找具有相同姓氏和相同邮政编码的数据库中的所有记录
例如:
System.Diagnostics.StackTrace
非常感谢
答案 0 :(得分:2)
最简单的方法是使用窗口函数:
select t.* from (select t.*, count(*) over (partition by last_name, postcode) as cnt from t ) t where cnt > 1;