需要选择查询才能获得如下所示的输出。

时间:2017-03-15 06:50:20

标签: mysql

如何在列

中多次获取plate_number

数据库:编号

表名:number_plate

res/drawable-mdpi/ic_icon.png        // bitmap for medium density
res/drawable-hdpi/ic_icon.png        // bitmap for high density
res/drawable-xhdpi/ic_icon.png   

1 个答案:

答案 0 :(得分:1)

这个会给你重复出现的板块和出现次数

@Configuration
@PropertySource("classpath:application-env.properties")
@PropertySource(value="file:${application.home}/application-env.properties",ignoreResourceNotFound=true)
public class GlobalSettings {
  //configuration values
}

要获得您编写的确切输出,您应该再次使用表格加入上面的查询

select  plate_number, count(*) 
from    table
group by plate_number
having count(*) > 1