达梦与mssql的order by的区别

  • 在单表简单查询时,mssql和dm8都可以通过查询字段名或别名进行order by

mssql和dm8,使用字段名进行order by 

select emp_ID,emp_Name from Employee order by emp_Name

mssql和dm8,使用字段别名进行order by 

select emp_ID,emp_Name as 姓名 from Employee order by 姓名

mssql和dm8,有字段别名,也可以使用字段名进行order by 

select emp_ID,emp_Name as 姓名 from Employee order by emp_Name

  • 以下这种复杂查询,mssql和dm8使用order by就有所区别了

mssql的order by 示例:

--mssql order by 的使用情况
--该示例查询语句查询结果返回的字段为:id, name, icon, parentId, routePath, routeComponent, routeName, routeParentName
--使用情况1:使用order by mod_parentId,mod_ID
select mod_ID as id,mod_Name as name,mod_icon as icon,mod_parentId as parentId,mod_routePath as routePath,mod_routeComponent as routeComponent,mod_routeName as routeName,mod_routeParentName as routeParentName
from Authority
inner join Module on mod_ID = aut_ModuleID
where aut_EmployeeID = 'manager' and isnull(mod_routePath,'') != ''
union
select id,name,null as icon,null as parentId,null as routePath,null as routeComponent,null as routeName,null as routeParentName
from ParentMenu
inner join (
select mod_parentId
from Authority
inner join Module on mod_ID = aut_ModuleID
where aut_EmployeeID = 'manager' and isnull(mod_routePath,'') != ''
group by mod_parentId) t on t.mod_parentId = ParentMenu.id
--使用union前面的查询语句实体字段mod_parentId,mod_ID进行排序
order by mod_parentId,mod_ID----------------------------------------------------------------------
--使用情况2:使用order by parentId,id
select mod_ID as id,mod_Name as name,mod_icon as icon,mod_parentId as parentId,mod_routePath as routePath,mod_routeComponent as routeComponent,mod_routeName as routeName,mod_routeParentName as routeParentName
from Authority
inner join Module on mod_ID = aut_ModuleID
where aut_EmployeeID = 'manager' and isnull(mod_routePath,'') != ''
union
select id,name,null as icon,null as parentId,null as routePath,null as routeComponent,null as routeName,null as routeParentName
from ParentMenu
inner join (
select mod_parentId
from Authority
inner join Module on mod_ID = aut_ModuleID
where aut_EmployeeID = 'manager' and isnull(mod_routePath,'') != ''
group by mod_parentId) t on t.mod_parentId = ParentMenu.id
--使用查询结果返回的字段parentId,id进行排序,其中parentId是别名字段,不是实体字段
order by parentId,id--mssql order by 的使用结论:order by 后面的字段,可以是查询结果返回的字段,也可以是查询涉及到的实体字段。--根据结论,那么该查询使用 order by parentId,id,mod_routeName,name 也应该是可以的
select mod_ID as id,mod_Name as name,mod_icon as icon,mod_parentId as parentId,mod_routePath as routePath,mod_routeComponent as routeComponent,mod_routeName as routeName,mod_routeParentName as routeParentName
from Authority
inner join Module on mod_ID = aut_ModuleID
where aut_EmployeeID = 'manager' and isnull(mod_routePath,'') != ''
union
select id,name,null as icon,null as parentId,null as routePath,null as routeComponent,null as routeName,null as routeParentName
from ParentMenu
inner join (
select mod_parentId
from Authority
inner join Module on mod_ID = aut_ModuleID
where aut_EmployeeID = 'manager' and isnull(mod_routePath,'') != ''
group by mod_parentId) t on t.mod_parentId = ParentMenu.id
--使用查询结果返回的字段parentId,id,name 和 查询涉及到的实体字段mod_routeName进行排序
order by parentId,id,mod_routeName,name

mssql order by 的使用结论:order by 后面的字段,可以是查询结果返回的字段,也可以是查询涉及到的实体字段。

dm8的order by 示例:

--dm8 order by 的使用情况及结论
--该示例查询语句查询结果返回的字段为:id, name, icon, parentId, routePath, routeComponent, routeName, routeParentName
--使用情况1:使用order by mod_parentId,mod_ID,该语句会报错:无效的列名[MOD_PARENTID]
select mod_ID as id, mod_Name as name, mod_icon as icon, mod_parentId as parentId, mod_routePath as routePath, mod_routeComponent as routeComponent, mod_routeName as routeName, mod_routeParentName as routeParentName
from Authority
inner join Module on mod_ID = aut_ModuleID
where aut_EmployeeID = 'manager' and isnull(mod_routePath,'') <> ''
union
select id,name,null as icon,null as parentId,null as routePath,null as routeComponent,null as routeName,null as routeParentName
from ParentMenu
inner join (
select mod_parentId
from Authority
inner join Module on mod_ID = aut_ModuleID
where aut_EmployeeID = 'manager' and isnull(mod_routePath,'') <> ''
group by mod_parentId) t on t.mod_parentId = ParentMenu.id
--使用union前面的查询语句实体字段mod_parentId,mod_ID进行排序
order by mod_parentId,mod_ID----------------------------------------------------------------------
--使用情况2:使用order by parentId,id
select mod_ID as id, mod_Name as name, mod_icon as icon, mod_parentId as parentId, mod_routePath as routePath, mod_routeComponent as routeComponent, mod_routeName as routeName, mod_routeParentName as routeParentName
from Authority
inner join Module on mod_ID = aut_ModuleID
where aut_EmployeeID = 'manager' and isnull(mod_routePath,'') <> ''
union
select id,name,null as icon,null as parentId,null as routePath,null as routeComponent,null as routeName,null as routeParentName
from ParentMenu
inner join (
select mod_parentId
from Authority
inner join Module on mod_ID = aut_ModuleID
where aut_EmployeeID = 'manager' and isnull(mod_routePath,'') <> ''
group by mod_parentId) t on t.mod_parentId = ParentMenu.id
--使用查询结果返回的字段parentId,id进行排序
order by parentId,id--dm8 order by 的使用结论:order by 后面的字段,必须是查询结果返回的字段。--根据结论,那么该查询使用 order by parentId,id,mod_routeName,name 应该会报错:无效的列名[MOD_ROUTENAME]
select mod_ID as id, mod_Name as name, mod_icon as icon, mod_parentId as parentId, mod_routePath as routePath, mod_routeComponent as routeComponent, mod_routeName as routeName, mod_routeParentName as routeParentName
from Authority
inner join Module on mod_ID = aut_ModuleID
where aut_EmployeeID = 'manager' and isnull(mod_routePath,'') <> ''
union
select id,name,null as icon,null as parentId,null as routePath,null as routeComponent,null as routeName,null as routeParentName
from ParentMenu
inner join (
select mod_parentId
from Authority
inner join Module on mod_ID = aut_ModuleID
where aut_EmployeeID = 'manager' and isnull(mod_routePath,'') <> ''
group by mod_parentId) t on t.mod_parentId = ParentMenu.id
--使用查询结果返回的字段parentId,id,name 和 查询涉及到的实体字段mod_routeName进行排序
order by parentId,id,mod_routeName,name--根据结论,那么该查询使用 order by parentId,id,routeName,name 应该是可以的
select mod_ID as id, mod_Name as name, mod_icon as icon, mod_parentId as parentId, mod_routePath as routePath, mod_routeComponent as routeComponent, mod_routeName as routeName, mod_routeParentName as routeParentName
from Authority
inner join Module on mod_ID = aut_ModuleID
where aut_EmployeeID = 'manager' and isnull(mod_routePath,'') <> ''
union
select id,name,null as icon,null as parentId,null as routePath,null as routeComponent,null as routeName,null as routeParentName
from ParentMenu
inner join (
select mod_parentId
from Authority
inner join Module on mod_ID = aut_ModuleID
where aut_EmployeeID = 'manager' and isnull(mod_routePath,'') <> ''
group by mod_parentId) t on t.mod_parentId = ParentMenu.id
--使用查询结果返回的字段parentId,id,routeName,name
order by parentId,id,routeName,name

dm8 order by 的使用结论:order by 后面的字段,必须是查询结果返回的字段。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/58063.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【隐私计算篇】全同态加密应用场景案例(隐私云计算中的大模型推理、生物识别等)

1.题外话 最近因为奖项答辩&#xff0c;一直在忙材料准备&#xff0c;过程非常耗费时间和精力&#xff0c;很难有时间来分享。不过这段时间虽然很忙碌&#xff0c;但这期间有很多新的收获&#xff0c;特别是通过与领域内专家的深入交流和评审过程&#xff0c;对密码学和隐私计算…

今日头条APP移动手机端留痕脚本

这两个的脚本目的是什么呢&#xff1f; 很简单&#xff0c;就是批量访问指定用户的首页&#xff0c;在他人访客记录里面留下你的账户信息&#xff0c;可以让对方访问你的头条&#xff0c;概率下会关注你的头条&#xff0c;目的嘛&#xff0c;这个自己细想&#xff01; 第1个是…

Python实现Android设备录屏功能及停止录屏功能

1、功能概述&#xff1f; 提供源码下载 之前通过ADB命令实现了实时的录屏功能。但是很遗憾&#xff0c;虽然通过adb命令录屏非常方便&#xff0c;但由于权限限制&#xff0c;无法在安卓系统较高的设备上使用。现选择使用另一开源工具来解决这一问题&#xff0c;并记录使用详细…

php基础:数据类型、常量、字符串

语法补充&#xff1a; 每句必须以&#xff1b;结尾 echo&#xff1a;能输出一个以上的字符串&#xff0c;英文逗号隔开 print&#xff1a;只能输出一个字符串并返回1 1.数据类型 php可以自动识别数据类型。 php有5种数据类型&#xff1a;String&#xff08;字符串&#xf…

java jsoup爬虫如何快速获取到html页面的选择器元素

java jsoup爬虫如何快速获取到html页面的选择器元素 一、打开元素选择器二、选定元素三、定位元素位置四、右键 -> copy ->copySelector五、代码中获取 一、打开元素选择器 在java采用jsoup爬虫中&#xff0c;返回的是html页面而不是json字段&#xff0c;就需要使用jsou…

[C++11] 右值引⽤与移动语义

文章目录 左值和右值左值&#xff08;Lvalue&#xff09;右值&#xff08;Rvalue&#xff09;区别 左值引⽤和右值引⽤左值引用&#xff08;Lvalue Reference&#xff09;右值引用&#xff08;Rvalue Reference&#xff09;右值引用的特点 右值引用延长生命周期右值引⽤和移动语…

传输层UDP

再谈端口号 端口号&#xff1a;标识了主机上进行通信的不同的应用程序 在TCP/IP 协议中我们用“源IP”"源端口号" “目的IP”“目的端口号” “协议号”五元组来标识一个通信 用netstat -n 查看 查看网络信息&#xff0c;我们有两种命令查看网络通信1.用netsta…

Linux-练习3

题目&#xff1a; 操作过程&#xff1a; 1.建立用户组 shengcan&#xff0c;其id 为 2000 2.建立用户组 caiwu&#xff0c;其id 为 2001 3.建立用户组 jishu&#xff0c;其 id 为 2002 4.建立用户 lee&#xff0c;指定其主组 id 为 shengchan&#xff0c;附加组为 jishu 和…

多GPU训练大语言模型,DDP, ZeRO 和 FSDP

在某些时候&#xff0c;我们可能需要将模型训练扩展到单个 GPU 之外。当模型变得太大无法适应单个 GPU 时&#xff0c;需要使用多 GPU 计算策略。但即使模型适合单个 GPU&#xff0c;使用多个 GPU 来加速训练也是有好处的。即使您正在处理一个小模型&#xff0c;了解如何在多个…

HTML5新增属性

1、HTML5 1.1 新增布局标签 header&#xff1a;用于定义文档或者section的页眉&#xff1b;footer&#xff1a;用于定义页面或section的底部信息&#xff1b;nav&#xff1a;用于定位页面上的导航链接部分&#xff1b;article&#xff1a;用于定位文档或者页面中的独立部分&a…

在浏览器中运行 Puppeteer:解锁新能力

Puppeteer&#xff0c;这个强大的浏览器自动化工具&#xff0c;通常在Node.js环境中运行。但你有没有想过&#xff0c;在浏览器本身中运行Puppeteer会是什么样子&#xff1f;这不仅能让我们利用Puppeteer的功能完成更多任务&#xff0c;还能避开Node.js特定的限制。 支持的功…

【Canvas与桌面】文山甲密铺桌面壁纸 1920*1080

【成图】 不加蒙版的部分截图&#xff1a; 加上蒙版的桌面壁纸图&#xff1a; 不加蒙版的桌面壁纸图&#xff1a; 【代码】 <!DOCTYPE html> <html lang"utf-8"> <meta http-equiv"Content-Type" content"text/html; charsetutf-8&qu…

ts:对象数组的简单使用

ts中对象数组的简单使用 一、主要内容说明二、例子1、源码12、源码1运行效果 三、结语四、定位日期 一、主要内容说明 平常ts创建数组的格式如下&#xff1a; let array:string[]["元素1","元素2","元素3","元素3","元素4"…

在 Ubuntu 22.04 LTS 上安装 NVM (Node Version Manager) 管理和切换不同版本的 Node.js npm

安装 nvm curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash# nvm --version 0.40.1安装 Node.js 的不同版本 列出所有可用的 Node.js 远程版本 nvm ls-remotenvm install v18.20.4# node --version v18.20.4# nvm current v18.20.4npm 是 …

Java语言-异常

目录 1.异常的概念与体系结构 1.1 异常的概念 1.2 异常的体系结构 1.3 异常的分类 1.3.1 编译时异常(受查异常) 1.3.2 运行时异常(非受查异常) 2.异常的处理 2.1 防御式编程 2.1.1 LBYL 2.1.2 EAFP 2.2 异常的抛出 2.3 异常的捕获 2.3.1 异常声明throws 2.3.2 …

gin入门教程(6):全局中间件,自定义中间件

在 Gin 中&#xff0c;中间件用于处理请求的预处理和后处理&#xff0c;可以实现日志、身份验证、跨域资源共享&#xff08;CORS&#xff09;等功能。下面是如何使用和创建中间件的基本步骤&#xff1a; 1. 使用内置中间件 Gin 提供了一些内置中间件&#xff0c;例如&#xf…

Docker 下备份恢复oracle

1.docker导出容器镜像 ##docker save -o 导出后的镜像名称.tar 容器名称|镜像id docker save -o oracle_11g.tar 3fa112fd3642 2.下载镜像上传镜像略 3.加载镜像 ##docker load -i <archive_file> docker load -i oracle11g11201.tar 4.添加版本号…

LeetCode 3185.构成整天的下标对数目 II:哈希表

【LetMeFly】3185.构成整天的下标对数目 II&#xff1a;哈希表 力扣题目链接&#xff1a;https://leetcode.cn/problems/count-pairs-that-form-a-complete-day-ii/ 给你一个整数数组 hours&#xff0c;表示以 小时 为单位的时间&#xff0c;返回一个整数&#xff0c;表示满足…

Spring IoC DI

博主主页: 码农派大星. 数据结构专栏:Java数据结构 数据库专栏:MySQL数据库 JavaEE专栏:JavaEE 关注博主带你了解更多数据结构知识 目录 1. 应用分层 1.1 如何分层: 1.2 MVC与三层架构区别联系 2. Spring 3.IoC & DI⼊⻔ 3.1 什么是IoC&#xff1f; 3.2 DI 介绍 …

ctfshow——web(持续更新)

文章目录 1、web签到题——base64编码特征2、web2——登录框测试&sqlmap使用3、web3——php伪协议 1、web签到题——base64编码特征 查看源代码&#xff1a; base64编码特征&#xff1a;大小写数字&#xff0c;偶尔最后几位是。 2、web2——登录框测试&sqlmap使用 …