摘要:
1. in 和 not in 会处理null 吗 ? 使用in时,忽略null值,不会查询条件为null的数据; 使用not in时,如果 not in后面的括号中没有null,会查询条件列中符合要求的数据,但会过滤掉条件为null的数据; 使用not in时,如果 not in后面的括号中有nul 阅读全文
摘要:
pip install pandas openpyxl import pandas as pd from Silence.utils.login_util import Login from Silence.utils.request_util import SendRequest def test 阅读全文
摘要:
表数据 统计每个name 的指标中红 / 黄 / 绿 / 灰 灯数量. 分组 使用sum()函数 select name, zhibiao1 as '指标1', zhibiao2 as '指标2', zhibiao3 as '指标3', sum(case when zhibiao1 ='红' the 阅读全文
摘要:
转自 : https://www.jb51.net/article/263686.htm 1、语法 最大值: GREATEST(expr_1, expr_2, ...expr_n) 最小值: LEAST(expr_1, expr_2, ...expr_n) 2、说明 GREATEST(expr_1, 阅读全文
摘要:
1. 数据如下: 2. 有数据的情况: select DEPT, group_concat(distinct level) as level from content where NAME = '南京' group by dept select DEPT, case when level like 阅读全文