select case status when 1 then '成功' when 2 then '失败' else '其他' end from user case后面紧跟要被作为判断的字段 when后面跟判断条件 then后面跟结果 else相当于default end是语句结束语 ...
分类:
数据库 时间:
2020-08-05 14:29:18
阅读次数:
95
简单函数CASE [col_name] WHEN [value1] THEN [result1]…ELSE [default] END new_col_name -- 枚举 select t_name, case t_name when '张三' then '严肃' when '李四' then ' ...
分类:
数据库 时间:
2020-08-04 09:54:24
阅读次数:
83
Hbuilder打包IOS关于定位描述问题由于某些问题,上传的IPA包被苹果拒绝了,修改之后重新打包上传,一直传不上去,原因如下:MissingInfo.plistkey-Thisappattemptstoaccessprivacy-sensitivedatawithoutausagedescription.Theapp‘sInfo.plistmustcontainanNSLocationAlwa
分类:
移动开发 时间:
2020-08-04 09:51:01
阅读次数:
116
A core dump is the recorded state of the working memory of a computer program at a specific time, generally when the program has terminated abnormally ...
分类:
系统相关 时间:
2020-08-01 21:26:59
阅读次数:
103
SELECT表名=case when a.colorder=1 then d.name else '' end,表说明=case when a.colorder=1 then isnull(f.value,'') else '' end,字段序号=a.colorder,字段名=a.name,标识=c... ...
分类:
数据库 时间:
2020-08-01 21:23:32
阅读次数:
95
在注解中使用动态 SQL 其实十分简单,只需在动态 SQL 语句的外面包上一层script标签即可。如下: @Select({"<script>", "SELECT * FROM imooc_user", " WHERE", " <choose>", " <when test='id != null ...
分类:
其他好文 时间:
2020-08-01 12:30:26
阅读次数:
59
一、线程queue 1,定义: queue队列 :使用 import queue,用法与进程 Queue一样。 queue is especially useful in threaded programming when information must be exchanged safely b ...
分类:
编程语言 时间:
2020-07-29 15:38:46
阅读次数:
79
Type = SqlFunc.IF(s.Type == 10).Return(1) .ElseIF(s.Type == 20).Return(2) .End(0) 等同于Select语句中的 (CASE WHEN ( [s].[type] =10 ) THEN 1 WHEN ( [s].[type] ...
分类:
数据库 时间:
2020-07-28 17:04:34
阅读次数:
103
1. Using inline to replace #define when there are paramters 2. Using unsigned int only for bit-operations 3. Using fixed-width type int e.g. uint8_t, ...
分类:
其他好文 时间:
2020-07-27 15:42:42
阅读次数:
67
@ 状语从句的连接词 独立结构(独立主格) 如果有be动词,谓语变身过程中丢掉be动词,本质就是变成了分词结构 例子 主语一直主动 When I was a little girl, I fell in love with science. Being a little girl, I fell i ...
分类:
其他好文 时间:
2020-07-26 19:38:19
阅读次数:
115