mysql:在mysql-column

时间:2017-08-08 12:12:20

标签: mysql indexing substring find-in-set

我有一个问题是在MySQL-Column"值"中找到一个串联字符串中的最短值和最长值。 。 问题,列中的值与" |"并且可能不同。

表:

ID  |  values 
----------------------------------------
A   |  12.1|11.23|134.44
B   |  11.134|1.3|34.5|152.12|1.31313|134.331|12.31
C   |  34.11|1.34|343412.2|13......

问题是:是否有一些简单的可能性,只能通过本机mysql查询找到(最短和最长)值,而不使用任何语言作为Java或PHP。

谢谢

3 个答案:

答案 0 :(得分:1)

您无法在单个查询中获得所需的结果,至少在当前版本的MySQL中无法获得。原因是在知道最大长度之前,您无法形成查询以从未知长度的分隔字符串中提取单个元素。

首先找出最长列表中有多少元素:

select max(length(`values`)-length(replace(`values`, '|', ''))) as max from t;
+------+
| max  |
+------+
|    6 |
+------+

现在你知道你需要测试多达7个"字段"在您的分隔字符串中。没有办法用可变数量的联合查询形成SQL。语法必须在准备时修复,因此您需要知道多少。

select id, substring_index(substring_index(`values`, '|', 1), '|', -1) as element from t
union
select id, substring_index(substring_index(`values`, '|', 2), '|', -1) from t
union
select id, substring_index(substring_index(`values`, '|', 3), '|', -1) from t
union
select id, substring_index(substring_index(`values`, '|', 4), '|', -1) from t
union
select id, substring_index(substring_index(`values`, '|', 5), '|', -1) from t
union
select id, substring_index(substring_index(`values`, '|', 6), '|', -1) from t
union
select id, substring_index(substring_index(`values`, '|', 7), '|', -1) from t;    

+------+----------+
| id   | element  |
+------+----------+
| A    | 12.1     |
| A    | 11.23    |
| A    | 134.44   |
| B    | 11.134   |
| B    | 1.3      |
| B    | 34.5     |
| B    | 152.12   |
| B    | 1.31313  |
| B    | 134.331  |
| B    | 12.31    |
| C    | 34.11    |
| C    | 1.34     |
| C    | 343412.2 |
| C    | 13       |
+------+----------+

现在使用上面的查询作为子查询,您可以找到最长或最短的:

(select id, element from (...subquery...) as t1 order by length(element) asc limit 1)
union
(select id, element from (...subquery...) as t2 order by length(element) desc limit 1)

+------+----------+
| id   | element  |
+------+----------+
| C    | 343412.2 |
| C    | 13       |
+------+----------+

我同意那些评论说这是使用RDBMS的错误方法的人。我了解到你说你已经致力于这个结构,但是从长远来看,你发现它比修复模式所需的工作更能为你做出贡献。

另请参阅我对Is storing a delimited list in a database column really that bad?

的回答

答案 1 :(得分:0)

最大长度

select * from table order by length(column_name) DESC LIMIT 0,1

最小长度

select * from table order by length(column_name) ASC LIMIT 0,1

如果这不是您想要的,请将SQL查询添加到问题中。

答案 2 :(得分:0)

SQL对单元格中的值数组不友好。重构架构;然后解决方案将很容易。