我想使用搜索查询和DataGridView
运算符在like
中搜索名称。
public static DataSet SearchItems(string key)
{
string cmd = @"SELECT lt.ledgerId,la.ledgerName FROM ledgertranscationinfo lt
JOIN ledgeraccreation la ON lt.ledgerId = la.ledgerId;
WHERE la.ledgerName LIKE CONCAT('"
+ key.Trim() + "','%') ;";
DataSet ds = MySQL_Helper.GetDataSet(CommandType.Text, cmd, "LedgerAcCreation");
return ds;
}
搜索文本时显示错误。请给我正确的文本搜索解决方案。