上一页 1 2 3 4 5 6 7 8 9 ··· 28 下一页
摘要: 常用标签名称描述 w:p文本段落w:pPr段落设置w:nd缩进w:br换行wjc文本位置(left/center/right/…)wr 文字块w:rPr文本设置w:rFonts字体设置wcolor文字颜色w.sz文字大小w:t文本内容w:b 粗体w:i斜体w:u 下划线wstrike删除线wtbl 阅读全文
posted @ 2022-06-13 17:59 yongqi-911 阅读(601) 评论(0) 推荐(0) 编辑
摘要: 1.python创建xml使用xml.etree.ElementTree来操作xml创建节点:root = ET.Element('root', attribute), 其中, attribute是属性字典,需要属性时可以添加 创建文档:tree = ET.ElementTree(root)设置文本 阅读全文
posted @ 2022-06-13 17:12 yongqi-911 阅读(4631) 评论(0) 推荐(0) 编辑
摘要: server sql 无法访问本地127.0.0.1报错问题 SQL code1.SQL server 配置管理器->SQL SERVER 2005网络配置->MS-SQLSERVER的协议->TCP/IP->启用2.MS-SQLSERVER的协议->TCP/IP->属性->IP地址->a:IP1- 阅读全文
posted @ 2022-04-02 18:24 yongqi-911 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 分组取最大值 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 阅读全文
posted @ 2022-02-18 16:18 yongqi-911 阅读(430) 评论(0) 推荐(0) 编辑
摘要: Kettle常见问题-tinyint字段显示Y/N 在数据库链接增加参数:tinyInt1isBit=false 阅读全文
posted @ 2022-02-15 16:01 yongqi-911 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 一、创建django项目 file-新建二、创建应用 python manage.py startapp yourappname三、项目和应用关联 在项目中的settings.py 进行配置 INSTALLED_APPS = [yourprject] 四、初始化数据库 https://blog.cs 阅读全文
posted @ 2022-02-06 22:20 yongqi-911 阅读(61) 评论(0) 推荐(0) 编辑
摘要: #mysqlclient驱动 https://www.lfd.uci.edu/~gohlke/pythonlibs/#mysqlclient 阅读全文
posted @ 2022-02-05 23:27 yongqi-911 阅读(19) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/fwl8888/p/9635505.html Python datetime 格式化字符串:strftime() Python 的datetime模块 其实就是date和time 模块的结合, 常见的属性方法都比较常用 比如: datetime.day 阅读全文
posted @ 2022-02-05 16:07 yongqi-911 阅读(124) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-02-04 23:46 yongqi-911 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 层级关系 # coding: utf-8 """ # @Time : 2022/2/4 16:17 # @Author : Gina Gao # @File : # @Software: PyCharm # @Descript: """ import sys,os db=[{'id':1,'name 阅读全文
posted @ 2022-02-04 22:26 yongqi-911 阅读(17) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 28 下一页