• 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)

     

  • 相关阅读:
    vmware安装后设置网络
    博客园添加视频
    博客园音乐插件
    去除数组空格 php
    Jmeter 中多线程并发和循环控制器
    Jmeter对返回体中Json格式的reponse的处理
    Jmeter 抓app包 抓到一半不好用了
    Jmeter ResponseAssertion 【Ignore Status】
    JMeter源码导入到Intellij IDEA
    Jmeter 处理Unicode编码转为中文
  • 原文地址:https://www.cnblogs.com/yjybupt/p/10370046.html
Copyright © 2020-2023  润新知