摘要: 一、getdate() 作用: 得到服务器当前的时间二、datepart(interval,date) 参数: interval:时间的某一个部分(如时、分、秒、天、周、月、季、年) date:当前日期或指定日期 作用: 取指定时间的某一个部分,年月天时分秒 示例: select datepart( 阅读全文
posted @ 2020-11-30 18:01 路要一步一步走 阅读(272) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/qq_38348760/article/details/72526627 阅读全文
posted @ 2020-11-30 10:30 路要一步一步走 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/mqdxiaoxiao/article/details/100693171 阅读全文
posted @ 2020-11-30 10:06 路要一步一步走 阅读(589) 评论(0) 推荐(0) 编辑
摘要: int到Integer: int a=3; Integer A=new Integer(a); 或: Integer A=Integer.valueOf(a); Integer到int: Integer A=new Integer(5); int a=A.intValue(); 至于Integer. 阅读全文
posted @ 2020-11-30 09:28 路要一步一步走 阅读(2146) 评论(0) 推荐(1) 编辑
摘要: 转载:https://www.cnblogs.com/lisongyu/p/10142897.html 阅读全文
posted @ 2020-11-30 09:16 路要一步一步走 阅读(55) 评论(0) 推荐(0) 编辑