SQL之case when then else end用法介绍 https://www.2cto.com/database/201804/740772.html 要培训了 看到有case when 之前只是听说过 sql语句用的太少了 简单学习一下. case具有两种格式.简单case函数和case搜索函数. ? 1 2 3 4 5 6 7 8 9 --简单case函数 case sex when '1' then '男' when '2' then '女’ else '其他' en
前2天下载了一个2016的rc版本来玩一下,首先感觉是~开发者版本免费啦!!撒花!!!另外一个东西,sql server 2016能支持json 的解析和应用啦,虽然我不知道它的性能如何,先来一发测试一下功能 测试一下基本的,从查询结果里面构造一个json 的格式 ),Chinese int ,Math int) ,),(,),(,) select * from t1 select * from t1 for json auto --查询结果 ID name Chinese Math -----
测试一下基本的,从查询结果里面构造一个json 的格式 create table t1(ID int identity,name nvarchar(50),Chinese int ,Math int) insert into t1 values ('张三',90,80),('李四',75,90),('王五',68,100) select * from t1 select * from t1 for json auto --查询结果 ID name Chinese Math -----------
ASP.NET Core MVC 2.1 特意为构建 HTTP API 提供了一些小特性,今天主角就是 ApiControllerAttribute. (注:文章是18年2月份的,所以文章提到了core2.1还没发布). 本文参考自:Exploring the ApiControllerAttribute and its features for ASP.NET Core MVC 2.1 0. ApiControllerAttribute 继承自 ControllerAttribute ASP.
//得到List<HashTable>里面的listUnFix然后取listUnFix判断tempfix里面得值 List<Hashtable> list = new List<Hashtable>(); for (int i = 1; i <= 3; i++) { List<Hashtable> listUnFix = new List<Hashtable>(); foreach (var unq in unfixeditemlist)