博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ROW_NUMBER()、RANK()、DENSE_RANK()、NTILE(N)
阅读量:6089 次
发布时间:2019-06-20

本文共 714 字,大约阅读时间需要 2 分钟。

--动态多加字段--Case的搜索函数 (多个条件判断) 多加一列SELECT ROW_NUMBER() over (order by [RealPrice] desc )a ,[SaleId], --(case when RealPrice >0 and RealPrice<=100 then '低端产品'--when RealPrice >100 and RealPrice<=500 then '中端产品'--when RealPrice >500 and RealPrice<=1000 then '中高端产品'--when RealPrice >1000  then '低端产品'--else '没有价格'--end) 设置名称--上面这个方法也可以'设置名称'=(case when RealPrice >0 and RealPrice<=100 then '低端产品'when RealPrice >100 and RealPrice<=500 then '中端产品'when RealPrice >500 and RealPrice<=1000 then '中高端产品'when RealPrice >1000  then '低端产品'else '没有价格'end)       ,[Name]      ,[UnitPrice]      ,[RealPrice]      ,[CreatedTime]      ,[Creator]      ,[Enabled]      ,[StorageId]  FROM [Shop].[Base].[Sale] order by saleid desc

来自:

转载地址:http://wblwa.baihongyu.com/

你可能感兴趣的文章
WPF 降低.net framework到4.0
查看>>
搭建一个通用的脚手架
查看>>
开年巨制!千人千面回放技术让你“看到”Flutter用户侧问题
查看>>
开源磁盘加密软件VeraCrypt教程
查看>>
本地vs云:大数据厮杀的最终幸存者会是谁?
查看>>
阿里云公共镜像、自定义镜像、共享镜像和镜像市场的区别 ...
查看>>
shadowtunnel v1.7 发布:新增上级负载均衡支持独立密码
查看>>
Java线程:什么是线程
查看>>
mysql5.7 创建一个超级管理员
查看>>
【框架整合】Maven-SpringMVC3.X+Spring3.X+MyBatis3-日志、JSON解析、表关联查询等均已配置好...
查看>>
要想成为高级Java程序员需要具备哪些知识呢?
查看>>
带着问题去学习--Nginx配置解析(一)
查看>>
onix-文件系统
查看>>
java.io.Serializable浅析
查看>>
我的友情链接
查看>>
多线程之线程池任务管理通用模板
查看>>
CSS3让长单词与URL地址自动换行——word-wrap属性
查看>>
CodeForces 580B Kefa and Company
查看>>
开发规范浅谈
查看>>
Spark Streaming揭秘 Day29 深入理解Spark2.x中的Structured Streaming
查看>>