上一页 1 2 3 4 5 6 ··· 59 下一页
摘要: 1. in 和 not in 会处理null 吗 ? 使用in时,忽略null值,不会查询条件为null的数据; 使用not in时,如果 not in后面的括号中没有null,会查询条件列中符合要求的数据,但会过滤掉条件为null的数据; 使用not in时,如果 not in后面的括号中有nul 阅读全文
posted @ 2024-01-05 23:52 Avicii_2018 阅读(650) 评论(0) 推荐(0) 编辑
摘要: pip install pandas openpyxl import pandas as pd from Silence.utils.login_util import Login from Silence.utils.request_util import SendRequest def test 阅读全文
posted @ 2023-11-28 22:55 Avicii_2018 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 表数据 统计每个name 的指标中红 / 黄 / 绿 / 灰 灯数量. 分组 使用sum()函数 select name, zhibiao1 as '指标1', zhibiao2 as '指标2', zhibiao3 as '指标3', sum(case when zhibiao1 ='红' the 阅读全文
posted @ 2023-11-28 21:34 Avicii_2018 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 转自 : 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, 阅读全文
posted @ 2023-11-25 21:32 Avicii_2018 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 1. 数据如下: 2. 有数据的情况: select DEPT, group_concat(distinct level) as level from content where NAME = '南京' group by dept select DEPT, case when level like 阅读全文
posted @ 2023-11-22 22:27 Avicii_2018 阅读(106) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 59 下一页