how to find out the repeated value from table using groupby
function?
Answer Posted / arshi
SELECT COUNT(CoumnName) AS Expr1
FROM Tablename
GROUP BY CoumnName
HAVING (COUNT(CoumnName) > 1)
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
Give an example of SQL injection attack ?
What is raid? : SQL Server Architecture
What does top operator do?
Do you know what is similarity and difference between truncate and delete in sql?
List down some advantages of sql stored procedure?
What are scheduled tasks in sql server?
How do you set a trace flag in sql server?
How many types of relations are there between dimension and measure group? : sql server analysis services, ssas
How to change the name of a database user?
What is serializable?
How to scale out a federation by Sql statement?
How to how to convert numeric expression data types using the convert() function??
What is partition in sql server?
Write an sql query to find first weekday of the month?
What are the differences between INNER JOIN, LEFT JOIN and RIGHT JOIN in SQL Server?