• kfrobotaidlog查找


     

     

    ======查看最新的大于6的数量==========

     

    select c.questionid from

    (select a.questionid, b.clientQuestion from

    similarquestion a inner join kfrobotaidlog b

    on a.question=b.question

    where b.questionUid is not null

    union

    select questionid,question from similarquestion) c

    group by c.questionid having count(c.questionid)>6

     

    使用问题标题去查找,避免因为问题进行了合并而导致丢失

    后续等问题库大致完善了,再根据questionid去整合

     

     

    ========完整版=========

     

     

    select d.questionid,d.clientQuestion from

     

    (select a.questionid, b.clientQuestion from

     

    similarquestion a inner join kfrobotaidlog b

     

    on a.question=b.question

     

    where b.questionUid is not null

     

    union            #有进行去重

     

    select questionid, question from similarquestion) d

     

    where char_length(d.clientQuestion)>2 and  d.questionid in   #问题长度要大于2,避免出现只有一个词的,不准确对应的情况。

     

    (select c.questionid from

     

    (select a.questionid, b.clientQuestion from

     

    similarquestion a inner join kfrobotaidlog b

     

    on a.question=b.question

     

    where b.questionUid is not null

     

    union

     

    select questionid,question from similarquestion) c

     

    group by c.questionid having count(c.questionid)>6)

     

  • 相关阅读:
    6.1成果(冲刺2.10)
    5.31成果(冲刺2.9)
    5.30成果(冲刺2.8)
    5.29成果(冲刺2.7)
    5.28成果(冲刺2.6)
    5.27成果(冲刺2.5)
    5.26成果(冲刺2.4)
    5.25成果(冲刺2.3)
    Nginx location匹配后 跳转问题
    记一次centos上发布core,访问502的bug
  • 原文地址:https://www.cnblogs.com/yjybupt/p/10370046.html
Copyright © 2020-2023  润新知