MySQL intercepts the sql statement of the string function

MySQL intercepts the sql statement of the string function

1. left(name,4) intercepts the 4 characters on the left

List:

SELECT LEFT(201809,4) 年

Results: 2018

2. right (name, 2) intercepts the 2 characters on the right

SELECT RIGHT(201809,2) 月份

Result: 09

3. SUBSTRING(name,5,3) intercepts the name field starting from the fifth character and only intercepts the next 3 characters

SELECT SUBSTRING('成都融資事業部',5,3)

Results: Division

4. SUBSTRING(name,3) intercepts the name field starting from the third character and all subsequent characters

SELECT SUBSTRING('成都融資事業部',3)

Results: Financing Division

5. SUBSTRING(name, -4) starts from the 4th character position (counting down) of the name field and continues until the end

SELECT SUBSTRING('成都融資事業部',-4)

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.

SELECT SUBSTRING('成都融資事業部',-4,2)

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 '.'

SELECT substring_index('www.baidu.com', '.', 2)

Results: www.baidu

8. substring_index('www.baidu.com', '.', -2) intercepts all characters after the second '.' (counting down)

SELECT substring_index('www.baidu.com', '.', -2)

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

SELECT SUBSTR('成都融資事業部', 1, CHAR_LENGTH('成都融資事業部')-3)

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:
  • Usage instructions for the Mysql string interception function SUBSTRING
  • MySQL interception and split string function usage examples
  • Mysql string interception and obtaining data in the specified string
  • mysql intercepts the content between two specified strings
  • Usage of MySQL intercepted string function substring_index
  • Summary of MySQL string interception related functions
  • MySQL implements string interception graphic tutorial

<<:  Ubuntu 16.04 installation tutorial under VMware 12

>>:  How to write elegant JS code

Recommend

Create a movable stack widget function using flutter

This post focuses on a super secret Flutter proje...

WeChat applet implements a simple calculator

A simple calculator written in WeChat applet for ...

Install mysql5.7.13 using RPM in CentOS 7

0. Environment Operating system for this article:...

CentOS7 installation GUI interface and remote connection implementation

Use the browser (webdriver)-based selenium techno...

CSS text alignment implementation code

When making forms, we often encounter the situati...

MySQL partition table is classified by month

Table of contents Create a table View the databas...

Detailed tutorial on configuring nginx for https encrypted access

environment: 1 CentOS Linux release 7.5.1804 (Cor...

Detailed explanation of the process of modifying Nginx files in centos7 docker

1. Install nginx in docker: It is very simple to ...

Component design specifications for WeChat mini-program development

WeChat Mini Program Component Design Specificatio...

Vue implements a movable floating button

This article example shares the specific code of ...

Detailed explanation of overflow:auto usage

Before starting the main text, I will introduce s...

How to install mongodb 4.2 using yum on centos8

1. Make a repo file Refer to the official install...