2018年3月24日
摘要: WITH AS的含义 WITH AS短语,也叫做子查询部分(subquery factoring),可以让你做很多事情,定义一个SQL片断,该SQL片断会 被整个SQL语句所用到。有的时候,是为了让SQL语句的可读性更高些,也有可能是在UNION ALL的不同部分,作为提供数 据的部分。 特别对于U 阅读全文
posted @ 2018-03-24 21:10 sxjljj 阅读(1249) 评论(0) 推荐(0) 编辑
摘要: 1.为什么用CTE,而不用表变量, declare @t table(CountryRegionCode nvarchar(3)) insert into @t(CountryRegionCode) (select CountryRegionCode from person.CountryRegio 阅读全文
posted @ 2018-03-24 20:45 sxjljj 阅读(155) 评论(0) 推荐(0) 编辑
摘要: public class Contact { public int ID { get; set; } public int Age { get; set; } public DateTime Birthday { set; get; } public string Name { set; get; 阅读全文
posted @ 2018-03-24 16:40 sxjljj 阅读(173) 评论(0) 推荐(0) 编辑