如果Count of month返回没有结果,则MySQL查询返回0

时间:2015-11-11 09:16:35

标签: mysql

我目前有一个MySQL查询,它返回特定月份内订单数量的计数。

public partial class FaciesControl : UserControl
{

    public FaciesControl()
    {
        InitializeComponent();
    }

    public List<string> Facies {get; set;}

    public void Bind(string[] data)
    {
        Facies = new List<string>();
        Facies.AddRange(data);
    }
}

第1个月和第2个月没有记录,但我希望Count在这几个月内返回0

0 个答案:

没有答案