doulin4844 2017-08-16 10:29
浏览 7
已采纳

我需要翻译一个与sql查询相关的句子,但不知道它意味着什么

I need to translate this sentece:

Consider loosening your query with OR. bike OR shed will often show more results than bike shed.

What is meant by bike and shed? Are these some symbols on the keyboard?

  • 写回答

1条回答 默认 最新

  • doukezi4576 2017-08-16 10:42
    关注

    What is meant by this is that searching for the string "bike shed" will yield less results than searching for entries that contains either "bike" OR "shed".

    Suppose you have three rows:

    1: I like my bike
    2: Buy my shed
    3: Where is the bike shed
    

    Searching for "bike" yields rows 1 and 3.

    Searching for "shed" yields rows 2 and 3.

    Searching for "bike shed" yields row 3.

    Searching for "bike" OR "shed" yields rows 1, 2 and 3.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 查询优化:A表100000行,B表2000 行,内存页大小只有20页,运行时3页,设计两个表等值连接的最简单的算法
  • ¥15 led数码显示控制(标签-流程图)
  • ¥20 为什么在复位后出现错误帧
  • ¥15 结果有了,想问一下这个具体怎么输入
  • ¥15 怎么修改鸿蒙app的UI及功能设计
  • ¥15 帮我利用jupyter 运行一个正确的代码
  • ¥15 如何使用Gephi软件和Python包中的GephiStreamer交互
  • ¥15 sqlite加密问题咨询
  • ¥15 appdesigner接收不到udp组播的数据
  • ¥15 verilog 非阻塞赋值下的移位拼接错误