平时我们工作中常常会遇到分库分表后,单单根据一个条件无法定位该信息具体是在哪个表中的时候,我们就需要多表搜索,可是如果是在100张表里面,我们还需要写100条select语句吗?这里我们可以批量生成select语句。
批量打印查询条件
select * from user_channel_info_0-user_channel_info_99 where channel_id=2 or channel_id=4 ;
create or replace procedure test_002 is
vSql varchar2(2000);
vTable varchar2(50);
vgrant varchar2(100);
begin
vgrant:='grant create table to testuser';
execute immediate vgrant;
for m in 0..99 loop
vTable := 'user_channel_info_'||m;
vSql := 'select * from '|| vTable ||' where channel_id=2 or channel_id=4 union all';
dbms_output.put_line(vSql);
--execute immediate vSql;
end loop;
end test_002;
执行上面的存储过程以后,会发现控制台上面已经打印了批量查询的语句,直接执行即可。