The table tbl_sites contains the following data:
-----------------------------------------------------
Userid sitename country
------------------------------------------------------
1 sureshbabu indian
2 PHPprogrammer andhra
3 PHP.net usa
4 PHPtalk.com germany
5 MySQL.com usa
6 sureshbabu canada
7 PHPbuddy.com pakistan
8. PHPtalk.com austria
9. PHPfreaks.com sourthafrica
10. PHPsupport.net russia
11. sureshbabu australia
12. sureshbabu nepal
13. PHPtalk.com italy
Write a select query that will displayed the duplicated
site name and how many times it is duplicated?

Answers were Sorted based on User's Feedback



The table tbl_sites contains the following data: -------------------------------------------------..

Answer / dinesh goyal, scorpio

select sitename,count(sitename) as total_sites from
tbl_sites group by sitename having (count(sitename)>1)

Is This Answer Correct ?    22 Yes 1 No

The table tbl_sites contains the following data: -------------------------------------------------..

Answer / bashi

SELECT sitename, COUNT(*) AS NumOccurrences
FROM tbl_sites
GROUP BY sitename HAVING COUNT(*) > 1

Is This Answer Correct ?    0 Yes 1 No

The table tbl_sites contains the following data: -------------------------------------------------..

Answer / sriram

SELECT sitename,COUNT(sitename) FROM tbl_sites GROUP BY
sitename

Is This Answer Correct ?    5 Yes 7 No

The table tbl_sites contains the following data: -------------------------------------------------..

Answer / thilip

SELECT sitename,COUNT(sitename) FROM tbl_sites GROUP BY
sitename

Is This Answer Correct ?    2 Yes 5 No

Post New Answer

More MySQL Interview Questions

What happens if a table has one column defined as TIMESTAMP?

1 Answers  


Explain the architecture models of SQL Server?

0 Answers  


How to declare variable in mysql trigger?

0 Answers  


What is pragma autonomous_transaction?

0 Answers  


What is the difference between timestamp and datetime in mysql?

0 Answers  






How can we find the number of rows in a table using MySQL?

3 Answers  


What is the purpose of using timestamp data type?

0 Answers  


What is a mysql model?

0 Answers  


What is 1nf 2nf 3nf?

0 Answers  


What is the difference between a Table and a View?

3 Answers  


How many columns can a table have?

0 Answers  


How can you export the table as an xml file in mysql?

0 Answers  


Categories