“Trouver des doublons dans la colonne SQL” Réponses codées

Trouver des valeurs de colonne en double dans le tableau avec SQL

SELECT username, email, COUNT(*)
FROM users
GROUP BY username, email
HAVING COUNT(*) > 1
Cucumberman

requête SQL pour trouver des doublons dans la colonne

SELECT name, COUNT(email) 
FROM users
GROUP BY email
HAVING COUNT(email) > 1
Unusual Unicorn

Obtenez des enregistrements en double dans SQL

Multiple field=
SELECT username, email, COUNT(*)
FROM users
GROUP BY username, email
HAVING COUNT(*) > 1

Single field=
SELECT _column, COUNT(*) 
FROM _table
GROUP BY _column
HAVING COUNT(*) > 1
Obedient Ocelot

Comment obtenir des valeurs en double dans SQL

• SELECT first_name, COUNT (first_name) FROM employees
GROUP BY first_name
HAVING (COUNT(first_name) > 1);
Obedient Ocelot

Trouver des doublons dans la colonne SQL

declare @YourTable table (id int, name varchar(10), email varchar(50))

INSERT @YourTable VALUES (1,'John','John-email')
INSERT @YourTable VALUES (2,'John','John-email')
INSERT @YourTable VALUES (3,'fred','John-email')
INSERT @YourTable VALUES (4,'fred','fred-email')
INSERT @YourTable VALUES (5,'sam','sam-email')
INSERT @YourTable VALUES (6,'sam','sam-email')

SELECT
    name,email, COUNT(*) AS CountOf
    FROM @YourTable
    GROUP BY name,email
    HAVING COUNT(*)>1
Motionless Mantis

Réponses similaires à “Trouver des doublons dans la colonne SQL”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code