MID(str,pos,len)
MID(str,pos,len) is a synonym for SUBSTRING(str,pos,len).
SELECT MID('abcd',4,1); +-----------------+ | MID('abcd',4,1) | +-----------------+ | d | +-----------------+ SELECT MID('abcd',2,2); +-----------------+ | MID('abcd',2,2) | +-----------------+ | bc | +-----------------+
A negative starting position:
SELECT MID('abcd',-2,4); +------------------+ | MID('abcd',-2,4) | +------------------+ | cd | +------------------+
© 2019 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/mid/