dounao4179 2016-08-09 06:26
浏览 5
已采纳

PHP选择类别和计数

Table categories:

id, name,    
-------------
1   category1
2   category2
3   category3
4   category4

Table posts:

id, category, title
--------------------
1   1, 3      title1
2   4, 2      title2
3   1, 4      title3

I would like to have a show categories and counter posts in this category. In the category column in the table posts I IDs of categories, which are separated by ', '. How to do that is searched when category = category ID and show counter with a minimum of SQL queries.

  • 写回答

1条回答 默认 最新

  • duanqian3464 2016-08-09 06:31
    关注

    You should fix your data structure to have one row per post and category. A comma-separated list is not a SQLish way to store data for many reasons. You should change this to a junction table.

    Here are some reasons why:

    • Numbers should be stored as numbers and not strings.
    • Foreign key relationships should be properly defined, and you can't do that with a string to a number.
    • An attribute should contain one value.
    • MySQL doesn't have very good support for string processing functions.
    • Queries using the column cannot be optimized using indexes.

    You should have a table called PostCategories for this information.

    Sometimes, we are stuck with other peoples bad design decisions. If so, you can use a query such as:

    select c.id, count(*)
    from posts p join
         categories c
         on find_in_set(c.id, replace(p.category)) > 0
    group by c.id;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部