会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
nimayax
博客园
首页
新随笔
联系
订阅
管理
2021年1月14日
sql server行转列
摘要: 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)
2019年10月23日
JavaScript 输入框值改变触发事件
摘要: <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)
2019年9月25日
sql server 使用 partition by 分区函数 解决不连续数字查询问题
摘要: 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)
2019年3月25日
C# 使用更多lamda表达式可以引用System.Linq
摘要: 如 list.Where
阅读全文
posted @ 2019-03-25 14:32 nimayax
阅读(504)
评论(0)
推荐(0)
C# 反射基础用法
摘要: 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)
2019年1月3日
经典排序算法
摘要: https://www.cnblogs.com/fivestudy/p/10212306.html
阅读全文
posted @ 2019-01-03 16:46 nimayax
阅读(85)
评论(0)
推荐(0)
2018年9月13日
js 节点
摘要: <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)
2018年4月9日
C# 代码往oracle数据库添加datetime格式列
摘要: C# 代码往oracle数据库添加datetime格式列时,不需要在insert语句中为datetime类型使用to_date函数
阅读全文
posted @ 2018-04-09 16:12 nimayax
阅读(1680)
评论(0)
推荐(0)
公告