相当于explode() 在MySQL 中处理字符串

Equivalent of explode() to work with strings in MySQL(相当于explode() 在MySQL 中处理字符串)
本文介绍了相当于explode() 在MySQL 中处理字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

在 MySQL 中,当另一个值 = '7 - 31' 时,我希望能够搜索 '31 - 7'.我会用什么语法来拆分 MySQL 中的字符串?在 PHP 中,我可能会使用 explode(' - ',$string) 并将它们放在一起.有没有办法在 MySQL 中做到这一点?

In MySQL, I want to be able to search for '31 - 7', when another value = '7 - 31'. What is the syntax that I would use to break apart strings in MySQL? In PHP, I would probably use explode(' - ',$string) and put them together. Is there a way to do this in MySQL?

背景:我正在处理体育比分,并想尝试比分相同(并且在同一日期)的比赛 - 每支球队的列出比分与对手的数据库记录相比是倒退的.

Background: I'm working with sports scores and want to try games where the scores are the same (and also on the same date) - the listed score for each team is backwards compare to their opponent's database record.

理想的 MySQL 调用是:

The ideal MySQL call would be:

Where opponent1.date  = opponent2.date
  AND opponent1.score = opponent2.score

(opponent2.score 需要是 opponent1.score 向后).

(opponent2.score would need to be opponent1.score backwards).

推荐答案

MYSQL 没有内置 explode() 之类的函数.但是您可以轻松地将类似的函数添加到您的数据库中,然后从php 查询.该函数将如下所示:

MYSQL has no explode() like function built in. But you can easily add similar function to your DB and then use it from php queries. That function will look like:

CREATE FUNCTION SPLIT_STRING(str VARCHAR(255), delim VARCHAR(12), pos INT)
RETURNS VARCHAR(255)
RETURN REPLACE(SUBSTRING(SUBSTRING_INDEX(str, delim, pos),
       CHAR_LENGTH(SUBSTRING_INDEX(str, delim, pos-1)) + 1),
       delim, '');

用法:

SELECT SPLIT_STRING('apple, pear, melon', ',', 1)

上面的例子将返回apple.我认为在 MySQL 中返回数组是不可能的,因此您必须在 pos 中明确指定要返回的事件.如果您成功使用它,请告诉我.

The example above will return apple. I think that it will be impossible to return array in MySQL so you must specify which occurrence to return explicitly in pos. Let me know if you succeed using it.

这篇关于相当于explode() 在MySQL 中处理字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

相关文档推荐

ibtmp1是非压缩的innodb临时表的独立表空间,通过innodb_temp_data_file_path参数指定文件的路径,文件名和大小,默认配置为ibtmp1:12M:autoextend,也就是说在文件系统磁盘足够的情况下,这个文件大小是可以无限增长的。 为了避免ibtmp1文件无止境的暴涨导致
SQL query to group by day(按天分组的 SQL 查询)
What does SQL clause quot;GROUP BY 1quot; mean?(SQL 子句“GROUP BY 1是什么意思?意思是?)
MySQL groupwise MAX() returns unexpected results(MySQL groupwise MAX() 返回意外结果)
MySQL SELECT most frequent by group(MySQL SELECT 按组最频繁)
Include missing months in Group By query(在 Group By 查询中包含缺失的月份)