SQL Query To Obtain Value that Occurs more than once

前端 未结 7 2033
陌清茗
陌清茗 2020-12-08 19:26

I need to query my database to show the records inside my table where lastname occurs more than three times. Example: in my Students Table, there are 3 people with Lastname

7条回答
  •  感动是毒
    2020-12-08 19:46

    For MySQL:

    SELECT lastname AS ln 
        FROM 
        (SELECT lastname, count(*) as Counter 
         FROM `students` 
         GROUP BY `lastname`) AS tbl WHERE Counter > 2
    

提交回复
热议问题