In mysql, to get sub string of the string we use SUBSTRING function. This substring function syntax below:
1 |
SUBSTRING(string,start_position,length) |
Example:
1 |
SUBSTRING("nosomovo",3,4) |
The result of this…
Xem thêm How to get sub string in mysql?