摘要:
一、getdate() 作用: 得到服务器当前的时间二、datepart(interval,date) 参数: interval:时间的某一个部分(如时、分、秒、天、周、月、季、年) date:当前日期或指定日期 作用: 取指定时间的某一个部分,年月天时分秒 示例: select datepart( 阅读全文
摘要:
转载:https://blog.csdn.net/qq_38348760/article/details/72526627 阅读全文
摘要:
转载:https://blog.csdn.net/mqdxiaoxiao/article/details/100693171 阅读全文
摘要:
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. 阅读全文
摘要:
转载:https://www.cnblogs.com/lisongyu/p/10142897.html 阅读全文