for step in range(100):
print(step)
sql = """select top 10000 Key_ID,Hospital_Name as '诊断入参'
from Hospital_Record
where Key_ID not in
(select top {} Key_ID
from Hospital_Record
order by Key_ID)
order by Key_ID;""".format(step*10000)
转载请注明原文地址:https://ipadbbs.8miu.com/read-11095.html