06 2022 档案
摘要:Oracle的分页查询 select * from (select t.*,rownum rn from tableName t) o where o.rn between firstIndex and lastIndex; 其中rownum 是oracle分页的关键字,是一个虚拟字段,将查到的数据
阅读全文
摘要:#!/usr/bin/python3 # *-* coding:utf-8 *-* import asyncio import requests async def download(url): """""" print('%s下载中' % url) await asyncio.sleep(1) #
阅读全文