dongyang2229 2012-01-18 17:24
浏览 85
已采纳

如何使用LIKE进行mysql搜索,使用JOIN和ORDER BY投票表中的大多数行数/投票数?

I have three tables I need to use in a search, Movies, Reviews, and Votes. I want to use the LIKE function for Movie.Title and Review.Subject and order them by the amount of the most votes for each match.

In the Votes table there is a ReviewID, UserID, IsGood. Every time a user votes, an insert is done with the MovieID, UserID, and 1 or 0 for the IsGood, 1 meaning good 0 meaning bad.

So one review may have 0 good and bad votes, or 5 good and 3 bad, etc. I would like to show the results in the following order:

Review 1 - 10Good / 3Bad

Review 2 - 4Good / 3Bad

Review 3 - 0Good / 0Bad

The matches with the most good votes at top, the ones with the most bad votes at the bottom.

This is the mysql query I wrote up and is obviously wrong, but hoping someone can help me out:

mysql_query("
    SELECT m.Title, r.Subject, v.ReviewID FROM Movies m
        LEFT JOIN Reviews r
            ON m.ID=r.MovieID
        INNER JOIN Votes v
            ON r.ID=v.ReviewID
        WHERE (m.Title LIKE '%" . $search . "%'
            OR r.Subject LIKE '%" . $search . "%')
        ORDER BY MAX(COUNT(v.IsGood='1')) LIMIT 10")or die(mysql_error());
  • 写回答

1条回答 默认 最新

  • douhuang3833 2012-01-18 17:37
    关注

    Here is a fuller answer. To get the sum or good votes and bad votes from a set of joined table rows, you need to group the like rows together.

    Below should give you the desired result.

    mysql_query("
        SELECT m.Title, r.Subject, v.TipID, sum(v.IsGood) as IsGood, sum(v.isBad) as isBad FROM Movies m
            LEFT JOIN Reviews r
                ON m.ID=r.MovieID
            LEFT JOIN Votes v
                ON r.ID=v.ReviewID
            WHERE (m.Title LIKE '%" . $search . "%'
                OR r.Subject LIKE '%" . $search . "%')
            GROUP BY  m.Title, r.Subject, v.TipID
            ORDER BY sum(v.IsGood) desc, sum(v.isBad) asc LIMIT 10")or die(mysql_error());
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥15 stable diffusion
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿