如何使SQL查询获得应用程序的频率?

时间:2017-09-06 06:34:02

标签: mysql sql

我有这张桌子:

ListOpAss1.ForEach(x=> 
{
    x.getNom(Properties.Settings.Default.Langue);
    var item = new ListViewItem(x.Nom);
    item.Tag = x;
    listBoxAss1.Items.Add(x.Nom);
});

我想按如下方式生成查询输出:

var items = collection.Where(x=> x.City == "Burgas").ToList(); //You can use select if you want only certain properties of the object to be selected
///then you can use that new item list to remove the objects from the collection list like this
items.ForEach(x=> 
{
    collection.Remove(x);
});

我希望得到按3类频率分类的应用程序的结果(0个应用程序,1-5个应用程序,> 5个应用程序)。具有相同application_applicantid的应用程序意味着申请x次应用程序。

如何为此进行SQL查询?

0 个答案:

没有答案