码迷,mamicode.com
首页 >  
搜索关键字:column mode    ( 16988个结果
CentOS7开启MySQL远程登录
登录mysql数据库 mysql -u root -p '你的密码' 查看user表 mysql> use mysql; mysql> select Host,User,Password from user; ERROR 1054 (42S22): Unknown column 'Password' ...
分类:数据库   时间:2021-05-24 03:47:36    阅读次数:0
MYSQL 5.7 报错
1:[Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column 'information_schema.PROFILING.SEQ' which i ...
分类:数据库   时间:2021-05-24 02:27:35    阅读次数:0
数据恢复系列~并行应用离线binlog
0基础环境 本文是基于阿里云的备份做的 1 全量备份文件xtrabackup 2 离线的你需要的所有binlog 1 建立备份实例 1 解压 2 apply-log 3 调整配置文件 skip-grant-tables=1 log-bin=mysql-bin gtid_mode=on enforce ...
分类:其他好文   时间:2021-05-24 01:56:37    阅读次数:0
Pivot a JavaScript Array: Convert a Column to a Row(前端列转行)
看看我 Sometimes we need to convert a column to row in JavaScript array. It might be helpful to pass it as web service argument, generating chart dynamic ...
分类:编程语言   时间:2021-05-24 01:49:28    阅读次数:0
MySql错误:ERROR 1292 (22007): Incorrect datetime value: '2007' for column 'b_date' at row 1
错误解决过程 总结:datetime类型插入数据应给数值加''单引号。 在解决问题的过程中添加过一条语句 set global max_allowed_packet=1024*1024*16; 如果添加单引号无法解决你的问题,请尝试以下添加它。 ...
分类:数据库   时间:2021-05-24 01:41:37    阅读次数:0
openpyl 设置单元格格式
1、设置超链接 # 设置超链接 sheet.cell(2,2).hyperlink = "www.baidu.com" 2.cell的其它属性 # cell 的其它属性 sheet.cell(row = 1,column = 2).column_letter sheet.cell(row = 1,c ...
分类:其他好文   时间:2021-05-23 22:55:32    阅读次数:0
idea中把springboot项目打包成jar包
用习惯了eclipse的伙伴可能不习惯在idea中打jar包,今天就来看看吧: 为了方便起见,我们沿用上一篇文章的例子(用idea创建maven的springboot项目https://www.cnblogs.com/qq2083587182/p/14726542.html) 把pom文件改为(其实 ...
分类:编程语言   时间:2021-05-04 16:29:10    阅读次数:0
Pandas-02-DataFrame运算
1. 算术运算 add(other) 比如进行数学运算加上一个具体数字 data["open"].add(10) # open列加10 # data["open"] + 10 # 一般不这么写 sub(other) 用法同add 2. 逻辑运算 2.1. 逻辑运算符号 逻辑运算类型:>, >=, < ...
分类:其他好文   时间:2021-05-04 16:04:10    阅读次数:0
Python----OS 文件目录处理
import os # os.mkdir("n1") # 创建目录 # 创建文件 # with open('1.txt',mode='w') as file: # file.write('11111') # os.mknod("n1.txt") # 创建文件,windows上面不支持,linux中支 ...
分类:编程语言   时间:2021-05-04 15:43:42    阅读次数:0
camtasia 系统音频设置失败解决方案,软件显示System Audio Setup Failed
解决办法: 编辑 --> 首选项 --> Advanced --> 选择 “Use software-only mode” (默认是:Use Gpu ...) ...
分类:其他好文   时间:2021-05-03 12:55:31    阅读次数:0
16988条   上一页 1 ... 9 10 11 12 13 ... 1699 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!