SQL Query to find duplicate values in a table
SELECT
col,
COUNT(col)
FROM.
table_name.
GROUP BY col.
HAVING COUNT(col) > 1;
SELECT
col,
COUNT(col)
FROM.
table_name.
GROUP BY col.
HAVING COUNT(col) > 1;
/****************************************************************************** *PURPOSE: Query to Customer, Customer Account and Customer...
No comments:
Post a Comment