上一页 1 2 3 4 5 6 ··· 9 下一页
摘要: 1.删除目录下 不包含某串字符的文件: @echo offfor /f "delims=" %%a in ('dir /s /a-d/b *.mp3') do ( echo "%%~nxa" | find "_C96kbps.mp3" >nul || del /f/q "%%~a")pause 2. 阅读全文
posted @ 2018-08-25 09:20 hellohyi 阅读(633) 评论(1) 推荐(0) 编辑
摘要: 1,查询当天(今天)的数据 1 SELECT * FROM `order` WHERE TO_DAYS(order_time) = TO_DAYS(NOW()) 1 SELECT * FROM `order` WHERE TO_DAYS(order_time) = TO_DAYS(NOW()) 1 阅读全文
posted @ 2018-04-19 15:22 hellohyi 阅读(6352) 评论(1) 推荐(0) 编辑
摘要: 相信有不少人,都喜欢有事没事刷刷微信朋友圈,看看朋友最新的动态,了解一下大家对热点问题的看法。但在朋友圈游走之时,却也可能因为一行小字而受挫:朋友仅展示最近三天的朋友圈。它像一道竖起的篱笆,柴扉紧锁,提示着我们这里面是你不可涉足的世界。 当观察他人生活的欲望,遭遇了“谢绝参观”的标识,虽然免不了一阵 阅读全文
posted @ 2018-04-16 14:08 hellohyi 阅读(157) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>扫码下载</title></head><body> <script> goDownload(); // 去下载 function goDownload() { va 阅读全文
posted @ 2018-04-12 11:19 hellohyi 阅读(1497) 评论(0) 推荐(0) 编辑
摘要: 1.查询某张表 一个字段的总和。(select SUM(MONEY) from income) 2.MYSQL里当天的时间(CURDATE()) 3.查询某张表某个字段不同的值的数量。(select count(distinct hostname) from income) 阅读全文
posted @ 2017-08-16 15:28 hellohyi 阅读(2241) 评论(0) 推荐(0) 编辑
摘要: 导致报错的问题是 emoji表情是4位 mysql 5.5.3版本以下数据库(utf8格式为3位),不支持。需要更新mysql5.5.3及以上的版本数据库并设置默认或者表或者字段的格式为 utf8mb4 格式。 问题解决! 在网络上查找了很久,亲测此方法解决! 修改配置文件: [client] de 阅读全文
posted @ 2017-08-14 18:19 hellohyi 阅读(432) 评论(0) 推荐(0) 编辑
摘要: 在mysql配置文件的 选项下添加设置。 [mysqld] skip-name-resolve skip-name-resolve 阅读全文
posted @ 2017-07-31 10:03 hellohyi 阅读(166) 评论(0) 推荐(0) 编辑
摘要: void getFiles( string path,vector& files) { //文件句柄 long hFile = 0; //文件信息 struct _finddata_t fileinfo; string p; if((hFile = _findfirst(p.assign(path).append("... 阅读全文
posted @ 2017-07-24 16:17 hellohyi 阅读(1655) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h" #include void Decrypt4k(TCHAR *str) { HANDLE hFile = CreateFile(str, GENERIC_READ|GENERIC_WRITE , 0, NULL,OPEN_EXISTING, FILE_ATTRIBUTE_NO... 阅读全文
posted @ 2017-07-13 17:12 hellohyi 阅读(174) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2017-07-07 15:26 hellohyi 阅读(2) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 9 下一页