oracle 查询语句 id='1' 和id='2'的都查询出来怎么写?
发布网友
发布时间:2024-10-02 15:27
我来回答
共5个回答
热心网友
时间:2024-11-03 15:37
很多种写法;
1. select * from tab where id='1' or id = '2'
2. select * from tab where id in ('1','2')
3. select * from tab where id='1'
union
select * from tab where id = '2'
热心网友
时间:2024-11-03 15:37
select * from tableName where id='1' or id='2'
select * from tableName where id in('1','2')
如果ID是int类型完全可以将单引号去掉
select * from tableName where id=1 or id=2
select * from tableName where id in (1,2)
热心网友
时间:2024-11-03 15:38
selecet * from table t where t.id in ('1', '2');
如果你有3,4,5 等 ,像1和2一样的格式往括号里面加就好了
热心网友
时间:2024-11-03 15:38
id='1' or id='2'
id in ('1','2')
热心网友
时间:2024-11-03 15:39
where id='1' or id='2'