2015年10月10日

SQL 语句转换格式函数Cast、Convert

摘要: SQL 语句转换格式函数Cast、Convert CAST和CONVERT都经常被使用。特别提取出来作为一篇文章,方便查找。 CAST、CONVERT都可以执行数据类型转换。在大部分情况下,两者执行同样的功能,不同的是CONVERT还提供一些特别的日期格式转换,而CAST没有这个功能。 既然C... 阅读全文

posted @ 2015-10-10 17:56 chengjunde 阅读(271) 评论(0) 推荐(0)

存储过程[st_MES_RptInspectShipment]

摘要: USE [ChangHong_612]GO/****** Object: StoredProcedure [dbo].[st_MES_RptInspectShipment] Script Date: 10/10/2015 16:00:02 ******/SET ANSI_NULLS ONGO... 阅读全文

posted @ 2015-10-10 17:40 chengjunde 阅读(216) 评论(0) 推荐(0)

存储过程函数的调用

摘要: USE [ChangHong_612]GO/****** Object: StoredProcedure [dbo].[ImportProductForDay] Script Date: 10/08/2015 11:34:35 ******/SET ANSI_NULLS ONGOSET QU... 阅读全文

posted @ 2015-10-10 17:37 chengjunde 阅读(507) 评论(0) 推荐(0)

SQl函数的写法

摘要: USE [ChangHong_612]GO/****** Object: UserDefinedFunction [dbo].[FN_GetProdQty] Script Date: 10/08/2015 14:05:16 ******/SET ANSI_NULLS ONGOSET QUOT... 阅读全文

posted @ 2015-10-10 17:34 chengjunde 阅读(537) 评论(0) 推荐(0)

加料记录(大屏幕)

摘要: USE [ChangHongWMS612]GO/****** Object: StoredProcedure [dbo].[WMS_MonitorMaterialPut] Script Date: 10/08/2015 09:55:05 ******/SET ANSI_NULLS ONGOS... 阅读全文

posted @ 2015-10-10 17:33 chengjunde 阅读(194) 评论(0) 推荐(0)

ios 调试

摘要: http://www.cnblogs.com/weilaikeji/p/3306597.htmlhttp://www.cnblogs.com/Twisted-Fate/p/4760156.htmlhttp://www.cnblogs.com/macroxu-1982/p/3470665.html 阅读全文

posted @ 2015-10-10 17:26 chengjunde 阅读(121) 评论(0) 推荐(0)

c# 递归算法

摘要: c# 递归算法2009-03-13 09:446950人阅读评论(8)收藏举报算法c#funn2c1)1、1、2、3、5、8.......用递归算法求第30位数的值? 首先我们可以发现从第3位数起后一位数等于前两位数值之和,即:x=(x-1)+(x-2),x>2; 这里需要不断的相加,第一时刻就会想... 阅读全文

posted @ 2015-10-10 17:24 chengjunde 阅读(12252) 评论(0) 推荐(0)

ios之点语法

摘要: 第一个object c 程序 首先新建一个项目,“create a new Xcode project"-"OS X下的Application"-"Command Line Tool" ,命名为“点语法”,Type为“Foundation”,不要勾选“Use Automatic Reference... 阅读全文

posted @ 2015-10-10 17:11 chengjunde 阅读(417) 评论(0) 推荐(0)

SQL Server中如何获取当前年,月,日,时,分,秒

摘要: 分类:SQL Serverselect GETDATE() as '当前日期',DateName(year,GetDate()) as '年',DateName(month,GetDate()) as '月',DateName(day,GetDate()) as '日',DateName(dw,Ge... 阅读全文

posted @ 2015-10-10 14:31 chengjunde 阅读(887) 评论(0) 推荐(0)

导航