我怎样才能将数据库中的项目存储到数组中,但前提是该项目尚未在数组中?

发布于 2024-11-02 20:42:34 字数 87 浏览 2 评论 0原文

我需要从数据库中获取类别名称并将它们存储到一个数组中,但我不想两次获取相同的类别。有没有办法,一旦我获取类别名称并将其存储到数组中即可跳过该类别并且不再存储它?

I need to grab categories name from my database and store them into an array, but I don't want to grab the same category twice. Is there a way to, once I grab the category name and store it into an array to skip that category and not store it any more?

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

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

发布评论

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

评论(4

纵性 2024-11-09 20:42:34
SELECT DISTINCT categoryname FROM CategoryTable
SELECT DISTINCT categoryname FROM CategoryTable
千纸鹤 2024-11-09 20:42:34

如果 DISTINCT 不适合您(也许您有多个查询...),您应该将数组用作集合。使用它来添加到数组中:

arr[$category] = true;

If DISTINCT doesn't work for you (maybe you have multiple queries...), you should use your array as a set. Use this to add to the array:

arr[$category] = true;
笑脸一如从前 2024-11-09 20:42:34

在 MySQL 中,如果我理解你的问题:

  select distinct `category` from table; 

In MySQL, if I understand your question:

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