摘要: SELECT PrecinctID,MAX(company) as company,MAX(voucher_type) as voucher_type,MAX(voucher_making_system) as voucher_making_system, MAX(receiver) as rece 阅读全文
posted @ 2021-01-14 11:39 nimayax 阅读(91) 评论(0) 推荐(0)
摘要: <input type="text" value="xxx" id="xx" onclick="this.myprop='xx'"> <script type="text/javascript"> document.getElementById('xx').attachEvent('onproper 阅读全文
posted @ 2019-10-23 10:02 nimayax 阅读(1870) 评论(0) 推荐(0)
摘要: sql server表中的某一列数据为不一定连续的数字,但是需求上要求按照连续数字来分段显示,如:1,2,3,4,5,6,10,11,12,13, 会要求这样显示:1~6,10~13。下面介绍如何实现。 话不多说,直接上实例。 --创建测试表CREATE TABLE PartitionTest(ID 阅读全文
posted @ 2019-09-25 18:30 nimayax 阅读(569) 评论(0) 推荐(0)
摘要: 如 list.Where 阅读全文
posted @ 2019-03-25 14:32 nimayax 阅读(504) 评论(0) 推荐(0)
摘要: 1.引用命名空间 using System.Reflection; 2.object[] parameters = { 参数 }; 调用方法的参数数组 3.Type t = Type.GetType("Class"); 获取类 4.MethodInfo Method = t.GetMethod(Me 阅读全文
posted @ 2019-03-25 11:53 nimayax 阅读(151) 评论(0) 推荐(1)
摘要: https://www.cnblogs.com/fivestudy/p/10212306.html 阅读全文
posted @ 2019-01-03 16:46 nimayax 阅读(85) 评论(0) 推荐(0)
摘要: <div id="test"><div></div><div></div></div><script>function dom() {var s= document.getElementById("test");del_ff(s); //清理空格var chils= s.childNodes; // 阅读全文
posted @ 2018-09-13 10:19 nimayax 阅读(98) 评论(0) 推荐(0)
摘要: C# 代码往oracle数据库添加datetime格式列时,不需要在insert语句中为datetime类型使用to_date函数 阅读全文
posted @ 2018-04-09 16:12 nimayax 阅读(1680) 评论(0) 推荐(0)