1. left(name,4) intercepts the 4 characters on the left List: Results: 2018 2. right (name, 2) intercepts the 2 characters on the right Result: 09 3. SUBSTRING(name,5,3) intercepts the name field starting from the fifth character and only intercepts the next 3 characters Results: Division 4. SUBSTRING(name,3) intercepts the name field starting from the third character and all subsequent characters Results: Financing Division 5. SUBSTRING(name, -4) starts from the 4th character position (counting down) of the name field and continues until the end Result: Investment Division 6. SUBSTRING(name, -4, 2) starts from the 4th character position (countdown) of the name field and only takes the next 2 characters. Results: Note: We noticed that in the function substring(str,pos,len), pos can be negative, but len cannot be negative. 7. substring_index('www.baidu.com', '.', 2) intercepts all characters before the second '.' Results: www.baidu 8. substring_index('www.baidu.com', '.', -2) intercepts all characters after the second '.' (counting down) Result: baidu.com 9. SUBSTR(name, 1, CHAR_LENGTH(name)-3) intercepts the name field and removes all characters except the last three digits of the name field Result: Chengdu Financing Summarize The above is the MySQL SQL statement for intercepting string functions introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: Ubuntu 16.04 installation tutorial under VMware 12
>>: How to write elegant JS code
This post focuses on a super secret Flutter proje...
A simple calculator written in WeChat applet for ...
0. Environment Operating system for this article:...
First download VMware Workstation 15.1 version. I...
Use the browser (webdriver)-based selenium techno...
When making forms, we often encounter the situati...
Table of contents Create a table View the databas...
environment: 1 CentOS Linux release 7.5.1804 (Cor...
1. Install nginx in docker: It is very simple to ...
WeChat Mini Program Component Design Specificatio...
This article example shares the specific code of ...
The front-end and back-end projects are separated...
This article shares with you the graphic tutorial...
Before starting the main text, I will introduce s...
1. Make a repo file Refer to the official install...