上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 18 下一页
摘要: namespace VideoMerger { class Program { static void Main(string[] args) { var physicalPath = @"D:\FFmpeg\videos\"; Stopwatch sw = new Stopwatch(); sw. 阅读全文
posted @ 2022-08-16 10:02 极客船长 阅读(490) 评论(0) 推荐(0) 编辑
摘要: public static long IPToLong(string strIP) { byte[] array = new byte[8]; string[] array2 = strIP.Split(new char[] { '.' }); for (int i = 0; i < 4; i++) 阅读全文
posted @ 2022-08-16 10:00 极客船长 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 开始拨号命令:Rasdial 宽带连接 abc 123 断开拨号命令:Rasdial 宽带连接 /disconnect 阅读全文
posted @ 2022-07-30 11:04 极客船长 阅读(240) 评论(0) 推荐(0) 编辑
摘要: [class^="foo bar row-id"]将匹配您所寻找的内容。这将搜索以.foo bar row-id开头的所有类。您也可以将class交换为任何其他HTML属性。 [class$="foo bar row-id"]将匹配以您的查询结尾的class。 [class^="foo bar ro 阅读全文
posted @ 2022-07-15 12:00 极客船长 阅读(581) 评论(0) 推荐(0) 编辑
摘要: set statistics profile on 阅读全文
posted @ 2022-07-12 14:48 极客船长 阅读(7) 评论(0) 推荐(0) 编辑
摘要: select * ,row_number() over (partition by c_id order by s_score) from score; 阅读全文
posted @ 2022-07-12 13:43 极客船长 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 1 /// <summary> 2 /// 解析省市区 3 /// </summary> 4 /// <param name="address"></param> 5 /// <returns></returns> 6 public (string province,string city,stri 阅读全文
posted @ 2022-07-01 11:25 极客船长 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 1 SET STATISTICS TIME ON 2 SET STATISTICS IO ON 阅读全文
posted @ 2022-06-17 11:53 极客船长 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 判断记录是否存在,要不是语句不够简洁,要不就是性能有很大问题。 我进行了优化后,最简洁简单性能最优的的sql语句,用来判断表中的记录是否存在: select isnull((select top(1) 1 from tableName where conditions), 0) 结果为 1,则说明记 阅读全文
posted @ 2022-06-17 10:46 极客船长 阅读(958) 评论(1) 推荐(1) 编辑
摘要: ALTER TABLE Table1 ALTER COLUMN column1 VARCHAR(255) 阅读全文
posted @ 2022-06-01 15:00 极客船长 阅读(239) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 18 下一页