02 2022 档案
摘要:分组取最大值 select gr,num,dt,(select bys from test where gr=b.gr and dt=b.dt) bysfrom( select gr,count(0) num,max(dt) dt from test group by gr) b
阅读全文
摘要:Kettle常见问题-tinyint字段显示Y/N 在数据库链接增加参数:tinyInt1isBit=false
阅读全文
摘要:一、创建django项目 file-新建二、创建应用 python manage.py startapp yourappname三、项目和应用关联 在项目中的settings.py 进行配置 INSTALLED_APPS = [yourprject] 四、初始化数据库 https://blog.cs
阅读全文
摘要:#mysqlclient驱动 https://www.lfd.uci.edu/~gohlke/pythonlibs/#mysqlclient
阅读全文
摘要:https://www.cnblogs.com/fwl8888/p/9635505.html Python datetime 格式化字符串:strftime() Python 的datetime模块 其实就是date和time 模块的结合, 常见的属性方法都比较常用 比如: datetime.day
阅读全文
摘要:层级关系 # coding: utf-8 """ # @Time : 2022/2/4 16:17 # @Author : Gina Gao # @File : # @Software: PyCharm # @Descript: """ import sys,os db=[{'id':1,'name
阅读全文
摘要:pip --upgrade批量更新过期的python库 https://blog.csdn.net/qq_35318838/article/details/76269692 今天看了下系统环境,不少python库都有了更新,再用旧版本库可能已经不适合了,就想把所有的库都更新到最新版本。查看系统里过期
阅读全文