"ヾ(?°?°?)??加油哟~","愿a56爆大奖在线娱乐们不负昭华,以梦为马!","愿a56爆大奖在线娱乐们历尽千帆,归来仍是少年!"
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页
摘要: vim /etc/my.cnf 修改配置文件添加 lower_case_table_names=1 1 不区分 0 区分 默认区分大小写 查询是否区分 show variables like '%case%'; 阅读全文
posted @ 2021-12-17 17:18 深夜独行侠 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 就是AE AF AWB Auto Exposure Auto Focus Auto White Balance 阅读全文
posted @ 2021-12-17 10:19 深夜独行侠 阅读(218) 评论(0) 推荐(0) 编辑
摘要: $ git push guaiguai master fatal: unable to access 'https://github.com/torchstar/20211202.git/': OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection 阅读全文
posted @ 2021-12-05 10:21 深夜独行侠 阅读(759) 评论(0) 推荐(0) 编辑
摘要: 1、常用的实现Java导入、导出Excel的技术有两种Jakarta POI和Java Excel 2、官方网址信息 官方主页http://poi.apache.org/index.html API文档http://poi.apache.org/apidocs/index.html 官方下载:htt 阅读全文
posted @ 2021-12-02 09:05 深夜独行侠 阅读(250) 评论(0) 推荐(0) 编辑
摘要: HSSFWorkBooK 阅读全文
posted @ 2021-12-01 16:57 深夜独行侠 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 1、数据库索引的优缺点以及什么时候数据库索引失效 优点:提高数据检索速率 缺点:占用物理空间,在数据进行增删改时需要动态维护,一定量降低了数据的维护速度 1.查询的索引列上使用函数 2.字符串不加''导致隐式转换 3.like条件最前面加% 4.负向查询<>,not in 阅读全文
posted @ 2021-12-01 15:22 深夜独行侠 阅读(5) 评论(0) 推荐(0) 编辑
摘要: { "msg": "运行时异常:nested exception is org.apache.ibatis.exceptions.PersistenceException: \r\n### Error querying database. Cause: org.springframework.jdb 阅读全文
posted @ 2021-11-27 10:01 深夜独行侠 阅读(115) 评论(0) 推荐(0) 编辑
摘要: /loveincode/p/tool.html 阅读全文
posted @ 2021-11-26 22:35 深夜独行侠 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 一、基本信息 用户签名的设置 全局名称和邮箱 Administrator@DESKTOP-27HOQJ5 MINGW64 ~/Desktop $ git config --global user.name torchstXX Administrator@DESKTOP-27HOQJ5 MINGW64 阅读全文
posted @ 2021-11-25 22:08 深夜独行侠 阅读(35) 评论(0) 推荐(1) 编辑
摘要: [Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column 'information_schema.PROFILING.SEQ' which is 阅读全文
posted @ 2021-11-24 11:44 深夜独行侠 阅读(321) 评论(0) 推荐(0) 编辑
摘要: https://en.taiwebs.com/windows/ 各种软件下载集合网站 阅读全文
posted @ 2021-11-24 11:39 深夜独行侠 阅读(196) 评论(0) 推荐(0) 编辑
摘要: select count(*) from information_schema.TABLES where TABLE_NAME = 'biz_film' 阅读全文
posted @ 2021-11-15 16:34 深夜独行侠 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 1、if函数 if else效果 select if(10>5,'大','小') 2、case函数的使用 switch case 效果 case 要判断的字段或者表达式 when 常量1 then 要显示的值1或语句1 when 常量1 then 要显示的值2或语句2 else 要显示的值n或语句n 阅读全文
posted @ 2021-11-14 17:43 深夜独行侠 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 序号 格式符 功能 1 %Y 四位的年份 2 %y 2位的年份 3 %m 月份 01 02 4 %c 月份 1,2,3 5 %d 日 01 02 6 %H 小时 24小时制 7 %h 小时12小时制 8 %i 分钟(00,01) 9 %s 秒(00,01,02) 阅读全文
posted @ 2021-11-14 09:31 深夜独行侠 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 查询缓存参数 show global variables like '%query_cache%'; have_query_cache YES #查询缓存是否可用 query_cache_limit 1048576 #可缓存具体查询结果的最大值 query_cache_min_res_unit 40 阅读全文
posted @ 2021-11-13 13:59 深夜独行侠 阅读(119) 评论(0) 推荐(0) 编辑
摘要: #1、连接函数 concat(A,B,C) #2、将函数大写 upper('aaa') lower('AAAA') #函数小写#3、substr substring #截取从指定索引处后面所有字符substr ("AAAAAAAAAAAA",7)#截取从指定索引处指定字符长度的字符substr('B 阅读全文
posted @ 2021-11-08 00:40 深夜独行侠 阅读(32) 评论(0) 推荐(0) 编辑
摘要: is null 仅仅可以判断null值,可读性高 <=> 既可以判断null值,又可以判断普通的数值,可读性较低 阅读全文
posted @ 2021-11-07 20:22 深夜独行侠 阅读(85) 评论(0) 推荐(0) 编辑
摘要: demo select * from a where a.last_name like '_$_%' escape '$' 将后面的下划线转译 阅读全文
posted @ 2021-11-07 20:13 深夜独行侠 阅读(85) 评论(0) 推荐(0) 编辑
摘要: mysqldump -uXXX用户 -pXXX密码 MM库 > D:/test_keshan/139bk/XXX.sql mysql -uXXX用户 -pXXX密码 MM库 < D:/test_keshan/sql/XXX.sql 阅读全文
posted @ 2021-11-04 11:56 深夜独行侠 阅读(38) 评论(0) 推荐(0) 编辑
摘要: select * from sys_role_menu INTO OUTFILE '/var/lib/mysql-files/a.txt'; 阅读全文
posted @ 2021-11-04 10:47 深夜独行侠 阅读(370) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页