假设有多条这样的语句:
select T_JGDM_20160811.JJLX from T_JGDM_20160811 where rownum < 30;
select T_JGDM.JJLX from T_JGDM where rownum < 30;
...
我们可以将其归纳为select xxx from yyy
的这种格式,如何在Python中1次执行多条这样的语句,其中xxx和yyy为可变的。
给我你的怀抱2017-05-25 15:10:08
可以将xxx和yyy提取出来当成变量
pram = [
(1111, 2222),
(2222, 3333)
...(自己补充)
]
for table, db in pram:
sql = 'select %s from %s' % (table, db)
print sql # 此处自行替换具体代码