sql >> データベース >  >> RDS >> Mysql

共通タグに基づいて関連アイテムを検索するアルゴリズム

    これはO(n ^ 2)と同じくらい悪いかもしれませんが、機能します:

    create table QuestionTags (questionid int, tag int);
    
    select q1.questionid, q2.questionid, count(*) as commontags
    from QuestionTags q1 join QuestionTags q2 
    where q1.tag = q2.tag and q1.questionid < q2.questionid
    group by q1.questionid, q2.questionid order by commontags desc;
    


    1. XAMPPが本番環境に適していないのはなぜですか?

    2. ansi_nullsについての何か

    3. 不完全なリカバリ後にデータベースが一貫していることを確認する方法

    4. インド、PHP、MYSQL、JQUERYのSTDコードファインダースクリプト