Today, my colleague encountered a very strange problem when writing MYSQL query statements. When using MySQL multi-table query, a field in one table is used as the in query condition of another table, only one piece of information can be read, but it can be read normally if a number is used directly. The SQL statement is as follows: select a.id,a.title,b.idlist,b.aid from table a,table2 b where a.id in(b.idlist) and b.aid=2
The above statement can be used to query normally, but only one piece of information can be queried. However, the following statement can be used to read normally. select a.id,a.title,b.idlist,b.aid from table a,table2 b where a.id in(1,2,3,4) and b.aid=2 This is a very strange problem. I thought it was a data type problem at first, but to save data in the format of
OK, let's try it first and modify the original SQL statement to select a.id,a.title,b.idlist,b.aid from table a,table2 b where FIND_IN_SET(a.id,b.idlist) and b.aid=2 Execute the modified statement, and it can finally be read normally. After analyzing the reason, it is ultimately due to the data type problem. When we directly in(b.idlist), the b.idlist read is a character type, and in only accepts numbers. Although both have "," they are actually completely different. Well, the problem is solved. If you want to know more about how to use the FIND_IN_SET() function, you can read the related articles on the page. You may also be interested in:
|
<<: JS 9 Promise Interview Questions
>>: Install Windows Server 2019 on VMware Workstation (Graphic Tutorial)
This article example shares the specific code of ...
In the horizontal direction, you can set the alig...
Table of contents 1. MySQL data backup 1.1, mysql...
This article uses the element official website an...
1. Download and install the official MySQL Yum Re...
introduce RANGE partitioning is based on a given ...
The semantics, writing style, and best practices ...
1. Official Introduction grep is a commonly used ...
First, we need to use the transform-origin attrib...
1. Installation steps for MySQL 8.0.12 version. 1...
While the paperless world has not yet emerged, mo...
Table of contents 1. Event delegation Event Bubbl...
I found a lot of websites that use drop-down or sl...
Table of contents background Question 1 Error 2 E...
CI/CD Overview CI workflow design Git code versio...