码迷,mamicode.com
首页 >  
搜索关键字:group by case when    ( 29534个结果
mysql统计各个科目的分数、总分、平均分
SELECT s.id, s.name, max(case when g.kemu='语文' then score else 0 end) as 语文,max(case when g.kemu='数学' then score else 0 end) as 数学,max(case when g.kem ...
分类:数据库   时间:2021-03-15 10:37:49    阅读次数:0
Generate POJOs.groovy
备用 // generator import com.intellij.database.model.DasTable import com.intellij.database.model.ObjectKind import com.intellij.database.util.Case impor ...
分类:其他好文   时间:2021-03-12 14:19:04    阅读次数:0
Jmeter工具
学习了一段时间的jmeter,还是感觉迷迷糊糊的。于是打算来做一个总结。 Jmeter主要组件: 1、测试计划: Test Plan ,所有操作都是在测试计划中进行的 2、线程组: (1) Thread Group :用来模拟用户 ,线程组中设置的线程数即虚拟用户数。 (2) bzm - Concu ...
分类:其他好文   时间:2021-03-10 13:06:55    阅读次数:0
Core Python | 2 - Core Python: Getting Started | 2.6 - Objects and Types | 2.6.4 - Python's Type System
Programming languages can be distinguished by several characteristics, but one of the most important is the nature of their type system. Python could ...
分类:编程语言   时间:2021-03-08 13:34:24    阅读次数:0
Linux常用命令
一.Linux 常用目录 1.home :普通用户的家目录 2.root :管理员家目录 3.usr/local :用户自行安装的软件存放路径 4.etc :配置文件存放路径 5.var :存放经常变化的文件 二.Linux 常用命令 1.su + 用户名 切换用户 su root 切换到管理员用户 ...
分类:系统相关   时间:2021-03-06 14:46:29    阅读次数:0
1037 Magic Coupon (25 分)
The magic shop in Mars is offering some magic coupons. Each coupon has an integer N printed on it, meaning that when you use this coupon with a produc ...
分类:其他好文   时间:2021-03-06 14:44:48    阅读次数:0
[CSS] Using transform: scale(0) for hiding element
For a radio button control, when hide selected status, we can use: .input__control::before { content: ""; width: 0.5em; height: 0.5em; // box-shadow w ...
分类:Web程序   时间:2021-03-06 14:44:13    阅读次数:0
【SpringBoot__Mybatis】整合MyBatis 配置文件版2
1、引用pom文件 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> </dependency> <dependency> <group ...
分类:编程语言   时间:2021-03-06 14:34:47    阅读次数:0
sqlServer 重复数据项处理,只选其中一条,保留一条
select * from table where id in (select max(id) from table group by [去除重复的字段名列表,....]) --删除 from table where id not in (select max(id) from table grou ...
分类:数据库   时间:2021-03-06 14:17:01    阅读次数:0
dev popupmenu 使用
1、二级菜单使用barSubItem 2、分段符设置属性 BeginGroup=true ...
分类:其他好文   时间:2021-03-05 13:28:09    阅读次数:0
29534条   上一页 1 ... 21 22 23 24 25 ... 2954 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!