where后面可以加多个条件么 具体语句应该怎么写呢 下面是一个条件的 如果要加其他or条件怎么加呢
string sql = "select * from WeldingDB where 母材='" + textBox12.Text.Trim() + "'";
C#中select from where
答案:2 悬赏:60 手机版
解决时间 2021-02-11 20:19
- 提问者网友:佞臣
- 2021-02-10 20:04
最佳答案
- 五星知识达人网友:一把行者刀
- 2021-02-10 20:38
select * from XX where ID in(1,19);
select * from XX where ID=1 or ID=19;
string sql = "select * from WeldingDB where 母材 in('" + textBox12.Text.Trim() +"','"+ textBox12.Text.Trim() "')";
select * from XX where ID=1 or ID=19;
string sql = "select * from WeldingDB where 母材 in('" + textBox12.Text.Trim() +"','"+ textBox12.Text.Trim() "')";
全部回答
- 1楼网友:躲不过心动
- 2021-02-10 21:23
标准sql语句写法为:
select * from hu_product where cid in(3,5,6,1,2)
所以proidlist定义成string类型,传递以,间隔的数字就行如:
proidlist="1,5,6,7,9";
sqlcommand mycmd = new sqlcommand("select count(id) as co from hu_product where cid in (" + proidlist + ")", conn);
这样就行的。
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯