12 2022 档案
摘要:1. 升序 select time,A from table1 order by time asc limit 10; + + +| time | A |+ + +| 2022-12-14 20:40:32 | 294.368 || 2022-12-14 20:41:02 | 293.819 ||
阅读全文
摘要:select ...into outfile语法是mysql提供的一种数据导出的方案,支持自定义导出数据格式。 例如:将test表的所有数据全部导出到test.txt文件。 select * from test into outfile '/tmp/test.txt'; 更常用的方法是将表数据导出成
阅读全文
摘要:我现在用的是Debian11,按照网上搜到的方法在Crontab里定时执行python脚本,可是没有反应 网上的方法大多是: */1 * * * * python 文件路径+文件名 或者是 */1 * * * * /usr/bin/python 文件路径+文件名 尝试以后,都不能用。 发现只有在当前
阅读全文
摘要:1 import usb.core 2 3 dev = usb.core.find(idVendor=0x17ef,idProduct = 0x600e) 4 ep = dev[0].interfaces()[0].endpoints()[0] 5 6 7 i = dev[0].interfaces
阅读全文
摘要:-V, --version 显示 Wget 的版本信息并退出。 -h, --help 打印此帮助。 -b, --background 启动后转入后台。 -e, --execute=COMMAND 运行一个‘.wgetrc’风格的命令。 登入并输入文件: -o, --output-file=FILE
阅读全文