上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 52 下一页
摘要: use my_temp CREATE VIEW V_temp --创建视图 AS SELECT * FROM A select *from V_temp 阅读全文
posted @ 2019-09-26 16:11 enych 阅读(150) 评论(0) 推荐(0) 编辑
摘要: select col from [dbo].[GetInPara]('101,102,103',',') USE [xxx] GO /****** Object: UserDefinedFunction [dbo].[GetInPara] Script Date: 2019/9/26 11:06:28 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFI 阅读全文
posted @ 2019-09-26 11:07 enych 阅读(987) 评论(0) 推荐(0) 编辑
摘要: SELECT LEN('SQL Server LEN') length, LEN('SQL Server LEN ') length_with_trailing_blanks; SELECT (CASE WHEN LEN('')=0 THEN '001' ELSE '1线' END) --执行001 SELECT (CASE WHEN LEN('1线')=0 THEN '001' ELSE '1线 阅读全文
posted @ 2019-09-26 10:41 enych 阅读(724) 评论(0) 推荐(0) 编辑
摘要: <html> 阅读全文
posted @ 2019-09-25 15:44 enych 阅读(962) 评论(0) 推荐(0) 编辑
摘要: 代码 输出 \' 单引号 \" 双引号 \& 和号 \\ 反斜杠 \n 换行符 \r 回车符 \t 制表符 \b 退格符 \f 换页符 1个 反斜杠 2个反斜杠 3个反斜杠 4个反斜杠 总结 字符串 中出现 两个斜杠, js 自动转义为1个斜杠; 1个斜杠 转 json对象时候 报错 是因为 就是报 阅读全文
posted @ 2019-09-23 11:23 enych 阅读(7464) 评论(0) 推荐(0) 编辑
摘要: if (that == null || "undefined" == typeof that) { return; } var bcd; //未定义 undefined function Check_data_type(obj) { if ("undefined" == typeof obj) { 阅读全文
posted @ 2019-09-22 11:52 enych 阅读(1507) 评论(0) 推荐(0) 编辑
摘要: 二改 三 改.... //table .js d.render = function (e, callback) { var t = new F(e); callback = callback || new Function(); win_handle_data = callback; callba 阅读全文
posted @ 2019-09-20 22:08 enych 阅读(1109) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/charleswone/p/10228699.html https://segmentfault.com/a/1190000008723632 https://www.cnblogs.com/tv151579/archive/2013/01/06/28 阅读全文
posted @ 2019-09-20 17:11 enych 阅读(361) 评论(0) 推荐(0) 编辑
摘要: //AA(); //可执行 function AA() { test(); //报错 var test = function test() { console.log(11); } } AA(); //可执行 //AA(); //可执行 function AA() { test(); //可执行 function test() { console.log(11); } } AA(); //可执行 阅读全文
posted @ 2019-09-20 16:52 enych 阅读(507) 评论(0) 推荐(0) 编辑
摘要: var head001 =true; var head002 = true; var head003 = true; for (;h < 10; h++) { console.log(h); } h=0; for (var z=10;h < 10; h++) { console.log(h)... 阅读全文
posted @ 2019-09-20 16:18 enych 阅读(399) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 52 下一页