Zend 框架 SQL 选择查询构造(ORDER BY)

发布于 2024-08-15 05:30:54 字数 612 浏览 4 评论 0原文

我有一个带有 VARCHAR 列 url 的数据库。我想获取行,以便具有任何 url 值的行优先于其他行,但按 date 行排序(降序),因此 ORDER BY 'url' DESC, 'date' DESC 不起作用,因为它会首先按字母顺序对它们进行排序。基本上,它看起来像这样:

Table:

ID   |    Url    | Date
1    | http://...| 1001
2    |           | 1002
3    |           | 1003
4    | http://...| 1005
5    | http://...| 1004

Sorted:

ID   |    Url    | Date
4    | http://...| 1005
5    | http://...| 1004
1    | http://...| 1001
3    |           | 1003
2    |           | 1002

正确的 zend 框架方式(或至少是 SQL 查询)是什么?

I have a database with VARCHAR column url. I would like to fetch rows so that the ones that have any url value have priority over other rows, but are ordered by date row (descending), so ORDER BY 'url' DESC, 'date' DESC wouldn't work as it would order them alphabetically first. Basically, it would look something like this:

Table:

ID   |    Url    | Date
1    | http://...| 1001
2    |           | 1002
3    |           | 1003
4    | http://...| 1005
5    | http://...| 1004

Sorted:

ID   |    Url    | Date
4    | http://...| 1005
5    | http://...| 1004
1    | http://...| 1001
3    |           | 1003
2    |           | 1002

What would be the proper zend framework way (or at least SQL query) to do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

雨巷深深 2024-08-22 05:30:55

使用 SQL,您可以这样...

如果您在 url 字段上也允许空值,它会变得有点难看。

SELECT * , IF(LENGTH(url) = 0 OR url IS NULL, 1, 0) AS nourl 
FROM url ORDER BY nourl ASC

这主要检查 url 长度是否大于零或为空。如果是的话,他们就排在最后。

With SQL, you could so something like...

It gets kind of ugly if you allow null values on the url field as well.

SELECT * , IF(LENGTH(url) = 0 OR url IS NULL, 1, 0) AS nourl 
FROM url ORDER BY nourl ASC

This basically checks to see if the url length is greater than zero or is null. If they are, they are at the bottom of the sort.

内心旳酸楚 2024-08-22 05:30:55

您可以在 select 语句中使用 order by field('field_name', value) desc

You could use order by field('field_name', value) desc in the select statement.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文