上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 22 下一页
摘要: sqlserver 查询当天/本周/本月/本季度/本年的数据 当天数据:select * from tableName where datediff(day, 字段名,getdate())=0 本周数据:select * from tableName where datediff(week, 字段名 阅读全文
posted @ 2021-05-27 08:49 黄立明02 阅读(221) 评论(0) 推荐(0) 编辑
摘要: update nvr_downfailed INNER JOIN( select nvr_restartnum from nvr_downfailed where downfile_id =(select max(downfile_id) from nvr_downfailed) ) b on nv 阅读全文
posted @ 2021-05-21 18:39 黄立明02 阅读(244) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Diagnostics; using System.Runtime.InteropServices; using System.Threading; using System.Timers; namespace ConsoleApp8 { cla 阅读全文
posted @ 2021-05-20 17:40 黄立明02 阅读(63) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_36675754/article/details/81381341/ 阅读全文
posted @ 2021-05-17 17:40 黄立明02 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 以下两个sql任意一个可查询 select @@basedir as basePath from dual ; show variables like '%basedir%'; 查看数据库data路径:以下查询任意一个均可 select @@datadir as dataPath from dual 阅读全文
posted @ 2021-05-17 17:33 黄立明02 阅读(50) 评论(0) 推荐(0) 编辑
摘要: Console.WriteLine(DateTime.ParseExact(20210511102323.ToString(), "yyyyMMddHHmmss", new CultureInfo("zh-CN", true),DateTimeStyles.AllowInnerWhite).ToSt 阅读全文
posted @ 2021-05-11 12:15 黄立明02 阅读(145) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-05-10 12:18 黄立明02 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-05-07 16:12 黄立明02 阅读(0) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/ming19951224/article/details/87536917 阅读全文
posted @ 2021-04-28 18:12 黄立明02 阅读(89) 评论(0) 推荐(0) 编辑
摘要: private void Form2_FormClosing(object sender, FormClosingEventArgs e) { DialogResult result = MessageBox.Show("你确定要关闭吗!", "提示信息", MessageBoxButtons.OK 阅读全文
posted @ 2021-04-28 18:03 黄立明02 阅读(291) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 22 下一页