• <small id='ZoczN'></small><noframes id='ZoczN'>

        • <bdo id='ZoczN'></bdo><ul id='ZoczN'></ul>
        <legend id='ZoczN'><style id='ZoczN'><dir id='ZoczN'><q id='ZoczN'></q></dir></style></legend>

        <tfoot id='ZoczN'></tfoot>
      1. <i id='ZoczN'><tr id='ZoczN'><dt id='ZoczN'><q id='ZoczN'><span id='ZoczN'><b id='ZoczN'><form id='ZoczN'><ins id='ZoczN'></ins><ul id='ZoczN'></ul><sub id='ZoczN'></sub></form><legend id='ZoczN'></legend><bdo id='ZoczN'><pre id='ZoczN'><center id='ZoczN'></center></pre></bdo></b><th id='ZoczN'></th></span></q></dt></tr></i><div id='ZoczN'><tfoot id='ZoczN'></tfoot><dl id='ZoczN'><fieldset id='ZoczN'></fieldset></dl></div>

        mysql 检查数字是否在逗号分隔的列表中

        mysql check if numbers are in a comma separated list(mysql 检查数字是否在逗号分隔的列表中)

          <small id='fd1My'></small><noframes id='fd1My'>

                <bdo id='fd1My'></bdo><ul id='fd1My'></ul>
                  <tbody id='fd1My'></tbody>

                  <i id='fd1My'><tr id='fd1My'><dt id='fd1My'><q id='fd1My'><span id='fd1My'><b id='fd1My'><form id='fd1My'><ins id='fd1My'></ins><ul id='fd1My'></ul><sub id='fd1My'></sub></form><legend id='fd1My'></legend><bdo id='fd1My'><pre id='fd1My'><center id='fd1My'></center></pre></bdo></b><th id='fd1My'></th></span></q></dt></tr></i><div id='fd1My'><tfoot id='fd1My'></tfoot><dl id='fd1My'><fieldset id='fd1My'></fieldset></dl></div>
                  <legend id='fd1My'><style id='fd1My'><dir id='fd1My'><q id='fd1My'></q></dir></style></legend><tfoot id='fd1My'></tfoot>
                • 本文介绍了mysql 检查数字是否在逗号分隔的列表中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  我有一张这样的桌子:

                  UID(int) NUMBERS(blob)
                  ----------------------
                  1        1,13,15,20
                  2        3,10,15,20
                  3        3,15
                  

                  我想测试 3 和 15 是否在名为 NUMBERS 的 blob 中.并且可以看到 LIKE %% 不能使用

                  And I would like to test if 3 and 15 are in the blob called NUMBERS. And can see the LIKE %% cannot be used

                  仅选择 ID 为 2 和三个 scoulb 的行...

                  Only row with ID 2 and three scoulb be selected...

                  推荐答案

                  这个也有效:

                  SELECT * FROM table WHERE 3 IN (NUMBERS) AND 15 IN (NUMBERS)
                  

                  使用 IN 将查看逗号分隔的字符串,例如.这两个

                  using the IN will look into a comma separated string eg. these two

                  WHERE banana IN ('apple', 'banana', 'coconut')
                  WHERE 3 IN (2,3,6,8,90)
                  

                  在此页面上找到的信息:

                  这篇关于mysql 检查数字是否在逗号分隔的列表中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Can#39;t Create Entity Data Model - using MySql and EF6(无法创建实体数据模型 - 使用 MySql 和 EF6)
                  MySQL select with CONCAT condition(MySQL选择与CONCAT条件)
                  Capitalize first letter of each word, in existing table(将现有表格中每个单词的首字母大写)
                  How to retrieve SQL result column value using column name in Python?(如何在 Python 中使用列名检索 SQL 结果列值?)
                  Update row with data from another row in the same table(使用同一表中另一行的数据更新行)
                  Exporting results of a Mysql query to excel?(将 Mysql 查询的结果导出到 excel?)
                • <legend id='byFmn'><style id='byFmn'><dir id='byFmn'><q id='byFmn'></q></dir></style></legend>
                    <tbody id='byFmn'></tbody>

                        <small id='byFmn'></small><noframes id='byFmn'>

                        <tfoot id='byFmn'></tfoot>

                        <i id='byFmn'><tr id='byFmn'><dt id='byFmn'><q id='byFmn'><span id='byFmn'><b id='byFmn'><form id='byFmn'><ins id='byFmn'></ins><ul id='byFmn'></ul><sub id='byFmn'></sub></form><legend id='byFmn'></legend><bdo id='byFmn'><pre id='byFmn'><center id='byFmn'></center></pre></bdo></b><th id='byFmn'></th></span></q></dt></tr></i><div id='byFmn'><tfoot id='byFmn'></tfoot><dl id='byFmn'><fieldset id='byFmn'></fieldset></dl></div>
                          • <bdo id='byFmn'></bdo><ul id='byFmn'></ul>