当前位置:网站首页>SQL filter query duplicate columns
SQL filter query duplicate columns
2020-11-09 22:26:00 【Game life】
id_cardxx by table;id,id_card,phone Are fields
-- Show repeating Columns select * from Table name where Name in (select Name from Table name group by Name having COUNT(*)>1) order by Name
select * from file_selection where mash in (select mash from file_selection group by mash having COUNT(*)>1) order by mash
-- Query duplicate data but exclude Minimum id MIN( id )
SELECT *
FROM
id_cardxx c
WHERE
EXISTS (
SELECT
a.id
FROM
id_cardxx a,
( SELECT id_card, MIN( id ) AS rid FROM id_cardxx GROUP BY id_card HAVING count( 1 ) > 1 ) b
WHERE
a.id_card = b.id_card
AND a.id != b.rid
AND c.id = a.id
)
AND id > 8071
AND phone IS NULL
ORDER BY
c.id_card;
-- To modify, you need to query the data as a new table once And
UPDATE id_cardxx
set Modify fields = 'xxxx'
WHERE id in ( SELECT....end ) as xx1
-- complete sql
UPDATE id_cardxx
set source = 'xxxx'
WHERE id in (
SELECT xx1.id FROM
(
SELECT id
FROM
id_cardxx c
WHERE
EXISTS (
SELECT
a.id
FROM
id_cardxx a,
( SELECT id_card, MIN( id ) AS rid FROM id_cardxx GROUP BY id_card HAVING count( 1 ) > 1 ) b
WHERE
a.id_card = b.id_card
AND a.id != b.rid
AND c.id = a.id
)
AND id > 8071
AND phone IS NULL
) as xx1
)
版权声明
本文为[Game life]所创,转载请带上原文链接,感谢
边栏推荐
猜你喜欢

Interviewer: what are cache penetration, cache avalanche and cache breakdown?

SQL Server附加数据库拒绝访问解决方法汇总

How to gracefully prevent switch switching of view UI?

The movie theater booking system based on micro Service Framework

On the practical application of C 9's new features
![[graffiti Internet of things footprint] graffiti cloud platform interface description](/img/3b/00bc81122d330c9d59909994e61027.jpg)
[graffiti Internet of things footprint] graffiti cloud platform interface description

Traditional purchasing mode has changed! How to innovate automobile purchasing function?

说说 C# 9 新特性的实际运用

Do you know your server? Do you know what's inside the server

The problem of looting by leetcode
随机推荐
白山云科技入选2020中国互联网企业百强
How SSL certificate and public IP address affect SEO
财务管理系统如何帮助企业实现财务自动化管理?
SRM系统是什么系统?SRM供应商管理系统功能
【科创人】Rancher江鹏:从清华工程物理学硕士到云计算开源创业者
Kubernetes-18:Dashboard安装及使用
正式班D25
LinkedList源码简析
IP address SSL certificate
CRM系统能帮助企业做哪些事?
Python中[:]与[::]的用法
传统采购模式已变!汽车采购职能该如何创新?
Make a home page
How to upload your avatar with code and add your own copyright information?
ES6, ES7, es8 Learning Guide
Quick for imx6ull development board c program call shell
[QT] subclass QObject + movetothread to realize multithreading
PHP - curl copy paste access SMS verification code example
Python提示AttributeError 或者DeprecationWarning: This module was deprecated解决方法
Application of EMQ X in Internet of things platform of China Construction Bank