Fork me on GitHub

02 2015 档案

摘要:select (to_date('2013-04-09 14:02:15','yyyy-mm-dd hh24:mi:ss') - to_date('1970-01-01','yyyy-mm-dd'))*86400000 from dual; 阅读全文
posted @ 2015-02-10 10:23 乔闻 阅读(959) 评论(0) 推荐(0) 编辑
摘要:?? 操作符叫做 null-coalescing operator.这个操作符给可为null的类型定义一个默认值。 (page ?? 1)表示如果page为null返回1,否则返回page的值。大家直接看下面例子: 阅读全文
posted @ 2015-02-05 10:42 乔闻 阅读(487) 评论(0) 推荐(0) 编辑
摘要:fromvar lowNums = from num in numbers where num students = new List { new Student {LastName="Omelchenko", Scores= new List {97, 72, 81, 60}}, new Stu... 阅读全文
posted @ 2015-02-03 16:56 乔闻 阅读(113) 评论(0) 推荐(0) 编辑