摘要:
中位数的位置:当样本数为奇数时,中位数=(N+1)/2 ; 当样本数为偶数时,中位数为N/2与1+N/2的均值 http://t.zoukankan.com/QiuJL-p-4524212.html create table #tb(pid varchar(10),coadcladcon int)i 阅读全文
摘要:
常用标签名称描述 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 阅读全文
摘要:
1.python创建xml使用xml.etree.ElementTree来操作xml创建节点:root = ET.Element('root', attribute), 其中, attribute是属性字典,需要属性时可以添加 创建文档:tree = ET.ElementTree(root)设置文本 阅读全文
摘要:
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- 阅读全文
摘要:
分组取最大值 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 阅读全文