本文介绍了组功能的使用无效的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
请帮我提前谢谢
错误是: - 无效使用群组功能
Pls help me thanks in advance
error is:- Invalid use of group function
public DataTable Search(int accountid, DateTime start, DateTime end,decimal amount)
{
try
{
string qry = "select * from Account where date >=@start and date <=@end and accountid=@accountid and sum(amount)=@amount";
MySqlParameter startP = new MySqlParameter("@start", start);
MySqlParameter endP = new MySqlParameter("@end", end);
MySqlParameter accountidP = new MySqlParameter("@accountid", accountid);
MySqlParameter amountP=new MySqlParameter("@amount",amount);
MySqlParameter[] p = { startP, endP, accountidP, amountP };
return MySqlHelper.ExecuteDataset(Common.GetConnectionString(), qry, p).Tables[0];
}
catch
{
Exception ex = new Exception(" Search AccountDetail Error.");
throw ex;
}
推荐答案
这篇关于组功能的使用无效的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!