查询语句str = "select * from table1 where xm = '" + textBox1.Text + "'"; 50
请问在textBox1中输入什么可以查询到所有数据.查询语句str="select*fromtable1wherexm='"+textBox1.Text+"'";请问在t...
请问在textBox1中输入什么可以查询到所有数据.
查询语句str = "select * from table1 where xm = '" + textBox1.Text + "'";请问在textBox1中输入什么可以查询到所有数据. 展开
查询语句str = "select * from table1 where xm = '" + textBox1.Text + "'";请问在textBox1中输入什么可以查询到所有数据. 展开
2个回答
展开全部
这个很难直接一个条件,然后把所有东西显示出来的,但是可以换个角度实现这个功能。你的目的无非是在textBox1里面输入个东西,然后检索出输入的结果值,如果什么都不输入就全部显示数据。如果是这个目的,这样写试一试:
str = "select * from table1 where (xm = '" + textBox1.Text + "' and '" + textBox1.Text + "' <> '') or '" + textBox1.Text + "' = ''“
这样你可以输入''空字符来显示所有数据了。我试过NULL不可以代替''空字符,select * from table1 where null = null结果显示0条。
str = "select * from table1 where (xm = '" + textBox1.Text + "' and '" + textBox1.Text + "' <> '') or '" + textBox1.Text + "' = ''“
这样你可以输入''空字符来显示所有数据了。我试过NULL不可以代替''空字符,select * from table1 where null = null结果显示0条。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
if(textBox1.Text.Trim()=="")
{
str= "select * from table1";
}
else
{
str = "select * from table1 where xm = '" + textBox1.Text + "'";
}
{
str= "select * from table1";
}
else
{
str = "select * from table1 where xm = '" + textBox1.Text + "'";
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询