求大神告知,sql语句中 select * from TABL where num=?中 怎么把条件num的值设置为1或者2 是用or么?
答案:3 悬赏:40 手机版
解决时间 2021-03-19 16:36
- 提问者网友:练爱
- 2021-03-19 07:23
求大神告知,sql语句中 select * from TABL where num=?中 怎么把条件num的值设置为1或者2 是用or么?
最佳答案
- 五星知识达人网友:毛毛
- 2021-03-19 08:45
几种方法呢,
select * from TABL where num IN (1,2)
select * from TABL where num =1 or num=2
select * from TABL where num between 1 and 2
select * from TABL where num IN (1,2)
select * from TABL where num =1 or num=2
select * from TABL where num between 1 and 2
全部回答
- 1楼网友:时间的尘埃
- 2021-03-19 11:07
对的 or 或者 in(1,2)
再看看别人怎么说的。
- 2楼网友:动情书生
- 2021-03-19 09:50
select * from TABL where num IN (1,2)
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯