我可以用纯 MySQL 解决这个问题吗? (加入列中的“;”分隔值)
当您的数据分布在多个表中并且需要在单个查询中检索它而不使用 PHP 等外部语言时,就会出现此问题。数据以非规范化方式存储,单个列中的多个值以分号 (;) 分隔。
问题描述:
在本例中, user_resource表有一个资源列,其中包含以分号分隔的资源 ID 列表:
user | resources |
---|---|
user1 | 1;2;4 |
user2 | 2 |
user3 | 3;4 |
期望结果:
期望结果是获得一个列出了以下内容的表:每个用户和相应的资源:
user | data |
---|---|
user1 | data1 |
user1 | data2 |
user1 | data4 |
user2 | data2 |
解决方案:
解决方案涉及从 user_resource 表创建一个“规范化”表,处理资源 ID 列表作为行,并将规范化表与资源表连接起来。这种“标准化”是使用 COUNT_IN_SET 和 VALUE_IN_SET 函数的组合来实现的。
标准化表:
生成的“标准化”表将类似于以下内容:
user | resources | resources_index | resources_value |
---|---|---|---|
sampleuser | 1;2;3 | 1 | 1 |
sampleuser | 1;2;3 | 2 | 2 |
sampleuser | 1;2;3 | 3 | 3 |
stacky | 2 | 1 | 2 |
testuser | 1;3 | 1 | 1 |
testuser | 1;3 | 2 | 3 |
最终查询:
<code class="sql">SELECT user_resource.user, resource.data FROM user_resource JOIN integerseries AS isequence ON isequence.id <= COUNT_IN_SET(user_resource.resources, ';') JOIN resource ON resource.id = VALUE_IN_SET(user_resource.resources, ';', isequence.id) ORDER BY user_resource.user, resource.data</code>
使用的函数:
COUNT_IN_SET 和 VALUE_IN_SET 函数的使用如下:
其他信息:
以上是我可以在不使用外部语言的情况下加入 MySQL 列中的 \';\' 分隔值吗?的详细内容。更多信息请关注PHP中文网其他相关文章!