Simulating MySQL#39;s ORDER BY FIELD() in Postgresql(在 Postgresql 中模拟 MySQL 的 ORDER BY FIELD())
问题描述
第一次尝试 PostgreSQL,来自 MySQL.在我们的 Rails 应用程序中,我们有几个使用 SQL 的位置,如下所示:
Just trying out PostgreSQL for the first time, coming from MySQL. In our Rails application we have a couple of locations with SQL like so:
SELECT * FROM `currency_codes` ORDER BY FIELD(code, 'GBP', 'EUR', 'BBD', 'AUD', 'CAD', 'USD') DESC, name ASC
没过多久就发现 PostgreSQL 不支持/不允许这样做.
It didn't take long to discover that this is not supported/allowed in PostgreSQL.
有谁知道如何在 PostgreSQL 中模拟这种行为,或者我们是否必须在代码中进行整理?
Does anyone know how to simulate this behaviour in PostgreSQL or do we have to pull sorting out into the code?
推荐答案
啊,gahooa 如此接近:
Ah, gahooa was so close:
SELECT * FROM currency_codes
ORDER BY
CASE
WHEN code='USD' THEN 1
WHEN code='CAD' THEN 2
WHEN code='AUD' THEN 3
WHEN code='BBD' THEN 4
WHEN code='EUR' THEN 5
WHEN code='GBP' THEN 6
ELSE 7
END,name;
这篇关于在 Postgresql 中模拟 MySQL 的 ORDER BY FIELD()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Postgresql 中模拟 MySQL 的 ORDER BY FIELD()
基础教程推荐
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01
- 什么是 orradiag_<user>文件夹? 2022-01-01
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
- 在多列上分布任意行 2021-01-01
- oracle区分大小写的原因? 2021-01-01
