C#多条件查询语句 20

要实现按条件查询的代码是什么就是点条件查询按钮的时候需要的代码privatevoidbutton1_Click(objectsender,EventArgse){//sq... 要实现按条件查询的代码是什么 就是点条件查询按钮的时候需要的代码

private void button1_Click(object sender, EventArgs e)
{
// sql = "SELECT * FROM Book WHERE BookId,BookName,Author,DateTime,Publisher ";
sql = " select BookId,BookName,Author,DateTime,Publisher,Note from Book where ";
if (txtBookId.Text != "")
sql = sql + "BookId=" + "'" + txtBookId.Text + "'";
else if (txtBookName.Text != "")
sql = sql + "BookName like" + "'%" + txtBookName.Text + "%'";
else if (txtAuthor.Text != "")
sql = sql + "Author like" + "'%" + txtAuthor.Text + "%'";
//else if (DateTime.Text != "")
// strSql = strSql + "Ldate >" + "'" + DateTime.Text + "'";
else if (cbbPublisher.Text != "")
sql = sql + "Publisher=" + "'" + cbbPublisher.Text + "'";
// strSql = strSql+"CustomerName like"+"'%"+textName.Text+"%'";
else
{
MessageBox.Show("请选择查询条件!", "提示");
return;
}
这段代码运行后点条件查询是出错的
展开
 我来答
007小太阳
2013-07-16 · TA获得超过278个赞
知道答主
回答量:172
采纳率:0%
帮助的人:57.8万
展开全部

可以写个关于where 条件发生变化的函数,给你个参考的看看,你也可以只传一个参数

  public void GetWhere(out string where, out string order)
    {
        where = "where 1=1";
        int cataId = int.Parse(ddlChildren.SelectedValue);  
        if (cataId > 0)
            where += string.Format(" and CataId={0}", cataId);
        if (ddlUnitPrice.SelectedIndex > 0)
            where += string.Format(" and UnitPrice {0}", ddlUnitPrice.SelectedValue);       
        if (ddlDiscountPrice.SelectedIndex > 0)
            where += string.Format("and DiscountPrice {0}", ddlDiscountPrice.SelectedValue);
        if (!string.IsNullOrEmpty(txtName.Text))
            where += string.Format("and Name like '%{0}%'", txtName.Text);
        if (!string.IsNullOrEmpty(txtBrand.Text))
            where += string.Format("and Brand like '%{0}%'", txtBrand.Text);         
        if (ddlSort.SelectedIndex > 0)
            order = " order by " + ddlSort.SelectedValue + " " + rbtSort.SelectedValue;
        else
            order = "order by Id ";
    }
xiangjuan314
2015-12-21 · TA获得超过3.3万个赞
知道大有可为答主
回答量:2.9万
采纳率:0%
帮助的人:2852万
展开全部
#region 多条件搜索时,使用List集合来拼接条件(拼接Sql)

StringBuilder sql = new StringBuilder("select * from PhoneNum");
List<string> wheres = new List<string>();
if (cboGroup.SelectedIndex != 0)
{
wheres.Add(" ptypeid=" + cboGroup.Text.Split('|')[0]);
}
if (txtSearchName.Text.Trim().Length > 0)
{
wheres.Add(" pname like '%" + txtSearchName.Text.Trim() + "%'");
}
if (txtSearchCellPhone.Text.Trim().Length > 0)
{
wheres.Add(" pcellphone like '%" + txtSearchCellPhone.Text.Trim() + "%'");
}

//判断用户是否选择了条件
if (wheres.Count > 0)
{
string wh = string.Join(" and ", wheres.ToArray());
sql.Append(" where " + wh);
}
#endregion

#region 多条件搜索使用带参数的sql语句
StringBuilder sql = new StringBuilder("select * from PhoneNum");
List<string> wheres = new List<string>();
List<SqlParameter> listParameter = new List<SqlParameter>();
if (cboGroup.SelectedIndex != 0)
{
wheres.Add(" ptypeid=@typeid ");
listParameter.Add(new SqlParameter("@typeid", cboGroup.Text.Split('|')[0]));
}
if (txtSearchName.Text.Trim().Length > 0)
{
wheres.Add(" pname like @pname ");
//pname like '%乔%'
//pname liek '%'+@pname+'%'
listParameter.Add(new SqlParameter("@pname", "%" + txtSearchName.Text.Trim() + "%"));
}
if (txtSearchCellPhone.Text.Trim().Length > 0)
{
wheres.Add(" pcellphone like @cellphone ");
listParameter.Add(new SqlParameter("@cellphone", "%" + txtSearchCellPhone.Text.Trim() + "%"));
}

//判断用户是否选择了条件
if (wheres.Count > 0)
{
string wh = string.Join(" and ", wheres.ToArray());
sql.Append(" where " + wh);
}

SqlHelper.ExecuteDataTable(sql.ToString(), listParameter.ToArray());
#endregion
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
chrisbadboy
推荐于2018-03-08 · TA获得超过225个赞
知道小有建树答主
回答量:332
采纳率:100%
帮助的人:176万
展开全部
将sql = " select BookId,BookName,Author,DateTime,Publisher,Note from Book where ";改为
sql = " select BookId,BookName,Author,DateTime,Publisher,Note from Book where 1=1";,然后在判断不为空时加上“and”,如
if (txtBookId.Text != "")
sql = sql + "BookId=" + "'" + txtBookId.Text + "'";
修改为:
if (txtBookId.Text != "")
sql = sql + "and BookId=" + "'" + txtBookId.Text + "'";
其他几个条件也一样计改就好了
追问
提示BookId附近有语法错误
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
DoramiHe
2017-06-03 · 知道合伙人互联网行家
DoramiHe
知道合伙人互联网行家
采纳数:25333 获赞数:59538
2011年中山职业技术学院毕业,现担任毅衣公司京东小二

向TA提问 私信TA
展开全部
因为你的 and 和 not 分支里,只是设置了相应的 str 的值,并没有调用
ds = db.GetDataFromDB(str);
所以ds保持null。

在两个 str = ... 的下一行,添加 ds = db.GetDataFromDB(str);
即可。

NOT的语法可以是 SELECT * FROM [Table] WHERE [Field] NOT LIKE '%string%'
或者SELECT * FROM [Table] WHERE NOT [Field] LIKE '%string%'

看样子你的语法是正确的,具体出什么错误?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
豆豆子灬
2013-07-16 · 超过24用户采纳过TA的回答
知道答主
回答量:84
采纳率:0%
帮助的人:33.7万
展开全部
主要就是拼SQL语句
sql = " select BookId,BookName,Author,DateTime,Publisher,Note from Book ";
str=“ where 1=1 ”;
if (txtBookId.Text != "")
sql = sql +str+“ and ”+ "BookId=" + "'" + txtBookId.Text + "'";(下面全部一样)
else if (txtBookName.Text != "")
追问
提示BookId附近有语法错误
追答
有些小问题,你假设有输入内容,把语句放到sqlserver里看还有什么小问题,修改就行。
sql = sql +str+“ and ”+ " BookId=" + “’ + txtBookId.Text + ‘”;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(4)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式