-
-
Save leewin12/9038563 to your computer and use it in GitHub Desktop.
MySQL Split User-defined function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- SPLIT_STR MySQL Function | |
-- from http://blog.fedecarg.com/2009/02/22/mysql-split-string-function/ | |
CREATE FUNCTION SPLIT_STR( | |
x VARCHAR(255), | |
delim VARCHAR(12), | |
pos INT | |
) | |
RETURNS VARCHAR(255) | |
-- use CHAR_LENGTH instead of LENGTH to support utf8 | |
RETURN REPLACE(SUBSTRING(SUBSTRING_INDEX(x, delim, pos), | |
CHAR_LENGTH(SUBSTRING_INDEX(x, delim, pos -1)) + 1), | |
delim, ''); | |
/* | |
Example: | |
SELECT SPLIT_STR('a|bb|ccc|dd', '|', 3) as third; | |
+-------+ | |
| third | | |
+-------+ | |
| ccc | | |
+-------+ | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment