06 2022 档案

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

点击右上角即可分享
微信分享提示