Mysql 查询 except 和 where

发布于 2024-10-09 05:20:23 字数 303 浏览 6 评论 0原文

我有以下查询从数据库中选择内容:

mysql_query("SELECT * FROM categories order by id desc EXCEPT 
             WHERE id = $post_id") 
or die(mysql_error());

我想要做的是选择“category”表中的所有列,按 id 降序排列它们,除非列“id”等于变量 $post_id。

然而,这是行不通的。我对这类东西比较陌生,所以你们能给我指出正确的方向吗?我真的很感激。

谢谢!

I have the follow query selecting stuff from a database:

mysql_query("SELECT * FROM categories order by id desc EXCEPT 
             WHERE id = $post_id") 
or die(mysql_error());

What I want to do is select all the columns in the "category" table, order them by id descending except where the column "id" equals the variable $post_id.

However, this does not work. I'm relatively new to this sort of stuff so could you guys give me a pointer in the right direction? I'd really appreciate it.

Thanks!

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

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

发布评论

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

评论(1

静若繁花 2024-10-16 05:20:23

试试这个:

SELECT * FROM categories WHERE id != $post_id
order by id desc 

/* except = not equal */

try this instead:

SELECT * FROM categories WHERE id != $post_id
order by id desc 

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