简体   繁体   English

搜索时SQL查询出错

[英]Error in SQL query when searching

I have an SQL query that displays information from different tables in the database. 我有一个SQL查询,显示数据库中不同表的信息。 This query is then displayed in a DataGrid and I have some options in a DropDownList to search through the DataGrid for certain values. 然后,此查询将显示在DataGrid中,并且我在DropDownList中有一些选项可以在DataGrid中搜索特定值。 The problem is the search doesn't display the correct information for CollectName or DeliverName. 问题是搜索没有显示CollectName或DeliverName的正确信息。 Code for DropDownList: DropDownList的代码:

 private static readonly Dictionary<string, string> SearchFields = new Dictionary<string, string> {
            { "Customer", "c.Name" },
            { "Department", "jn.Department" },
            { "CollectName", "SELECT Name FROM job_address WHERE AddressType = 3 AND JobID = jn.ID" },
            { "DeliverName", "(SELECT Name FROM job_address WHERE AddressType = 2 AND JobID = jn.ID)" }
        };

In the SQL query CollectName and DeliverName are inner select statements and that's whats causing the problem here because the search for Customer and Department work fine. 在SQL查询中,CollectName和DeliverName是内部选择语句,这就是导致问题的原因,因为搜索Customer和Department工作正常。 The SQL query: SQL查询:

SELECT  c.Name,
        COUNT(distinct jn.ID) as Jobs,
        sum(jn.OutTurn) as Outturn,
        SUM(jn.ActualWeight) as GrossWt,
        SUM(jn.CBM) as CBM,
        jn.Department,
        (SELECT Name FROM job_address WHERE AddressType =3 AND JobID = jn.ID) as CollectName,
        (SELECT Name FROM job_address WHERE AddressType =2 AND JobID = jn.ID) as DeliverName       
FROM customer c
LEFT JOIN job_address ja ON c.AccountCode = ja.Code AND c.Company_ID = ja.Company_ID
JOIN  AddressType jat ON ja.AddressType = jat.ID and jat.Description = 'Debtor'
LEFT JOIN job_new jn ON ja.JobID = jn.ID
WHERE c.Company_ID = ?compid
GROUP BY c.ID

I have a search function that takes the value selected from the DropDownList and the value entered in the textbox: 我有一个搜索功能,它接受从DropDownList中选择的值和在文本框中输入的值:

 List<MySqlParameter> param = new List<MySqlParameter>{ new MySqlParameter("compid", CompanyID) };
            StringBuilder SQL = new StringBuilder(SearchSQL);
            if (SearchFieldKey != null && SearchFieldKey.Length > 0)
            {
                SQL.Append(" AND (");
                for (int i = 0; i < SearchFieldKey.Length; i++)
                {
                    if (SearchFields.ContainsKey(SearchFieldKey[i]))
                    {

                        SQL.Append(SearchFields[SearchFieldKey[i]] + " LIKE ?parameter" + i.ToString());
                        param.Add(new MySqlParameter("parameter" + i.ToString(), "%" + SearchTerms[i] + "%"));

                        if (i != SearchFieldKey.Length - 1)
                            SQL.Append(" OR ");
                    }
                    else
                        throw new Exception("Error: Attempted to search on invalid field. Check SearchFields Argument.");
                }
                SQL.Append(") ");
            }

So for example I search for a customer, the SQL query get this line added to end: 因此,例如我搜索客户,SQL查询将此行添加到结尾:

WHERE c.Company_ID = ?compid AND (c.Name LIKE ?parameter0) 

And when I search for CollectName or DeliverName the query is this: 当我搜索CollectName或DeliverName时,查询是这样的:

WHERE c.Company_ID = ?compid AND (SELECT Name FROM job_address WHERE AddressType = 3 AND JobID = jn.ID LIKE ?parameter0)

Is there a problem with this SQL query that causes CollectName and DeliverName not to work? 此SQL查询是否存在导致CollectName和DeliverName不起作用的问题?

The parenthesis doesn't match, it should be 括号不匹配,应该是

WHERE c.Company_ID = ?compid 
AND (SELECT Name FROM job_address WHERE AddressType = 3 AND JobID = jn.ID) LIKE ?parameter0

To solve this, you can in your dictionary embed the statement: 要解决这个问题,您可以在字典中嵌入语句:

{ "CollectName", "(SELECT Name FROM job_address WHERE AddressType = 3 AND JobID = jn.ID)" },

Or in your method that build the SQL, embed automatically the subquery: 或者在构建SQL的方法中,自动嵌入子查询:

SQL.Append("(" + SearchFields[SearchFieldKey[i]] + ") LIKE ?parameter" + i.ToString());

Full correction : you should not try to concatenate string together if you are using a StringBuilder: 完全更正:如果您使用的是StringBuilder,则不应尝试将字符串连接在一起:

var param = new List<MySqlParameter> { new MySqlParameter("compid", CompanyID) };
StringBuilder SQL = new StringBuilder(SearchSQL);
if (SearchFieldKey != null && SearchFieldKey.Length > 0)
{
    SQL.Append(" AND (");
    for (int i = 0; i < SearchFieldKey.Length; i++)
    {
        if (SearchFields.ContainsKey(SearchFieldKey[i]))
        {
            SQL.Append("(");
            SQL.Append(SearchFields[SearchFieldKey[i]]);
            SQL.Append(") LIKE ?parameter");
            SQL.Append(i);
            param.Add(new MySqlParameter("parameter" + i.ToString(), "%" + SearchTerms[i] + "%"));

            if (i != SearchFieldKey.Length - 1)
                SQL.Append(" OR ");
        }
        else
            throw new Exception("Error: Attempted to search on invalid field. Check SearchFields Argument.");
    }
    SQL.Append(") ");
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM