1.使用or操作符
select *
from a
where a.no = '' or
a.no = '' or
a.no = '' or
a.no = '' or
........
a.no = '';
2.使用临时表
1)create table b (no number);
2)把数据导入到b表中
3)select *
from a,b
where a.no = b.no;
刚开始具体关注Oracle
性能问题的话再看看,了解了再补上来!
1.使用or操作符
select *
from a
where a.no = '' or
a.no = '' or
a.no = '' or
a.no = '' or
........
a.no = '';
2.使用临时表
1)create table b (no number);
2)把数据导入到b表中
3)select *
from a,b
where a.no = b.no;
刚开始具体关注Oracle
性能问题的话再看看,了解了再补上来!