Home > Database > Mysql Tutorial > Get last 5 characters of string using MySQL query?

Get last 5 characters of string using MySQL query?

王林
Release: 2023-09-06 17:13:09
forward
855 people have browsed it

使用 MySQL 查询获取字符串的最后 5 个字符?

To get the first n characters of a string using MySQL, use LEFT(). To get the last n characters of a string, the RIGHT() method is used in MySQL.

The syntax of RIGHT() method is as follows -

SELECT RIGHT(yourColumnName, valueOfN) as anyVariableName from yourTableName;
Copy after login

To understand the above concept, let us create a table. The query to create the table is as follows -

mysql> create table gettingLast5Characters
   −> (
   −> BookName varchar(100)
   −> );
Query OK, 0 rows affected (0.73 sec)
Copy after login

Now you can use insert command to insert records in the table. The query is as follows -

mysql> insert into gettingLast5Characters values('Introduction to C');
Query OK, 1 row affected (0.19 sec)

mysql> insert into gettingLast5Characters values('C in Depth');
Query OK, 1 row affected (0.18 sec)

mysql> insert into gettingLast5Characters values('Introduction to Java');
Query OK, 1 row affected (0.18 sec)

mysql> insert into gettingLast5Characters values('Let us C');
Query OK, 1 row affected (0.51 sec)
Copy after login

Use the select statement to display all records in the table. The query to display all records is as follows -

mysql> select *from gettingLast5Characters;
Copy after login

The following is the output-

+----------------------+
| BookName             |
+----------------------+
| Introduction to C    |
| C in Depth           |
| Introduction to Java |
| Let us C             |
+----------------------+
4 rows in set (0.00 sec)
Copy after login

This is the query to get the last 5 characters of the string-

mysql> select RIGHT(BookName,5) as Last5Character from gettingLast5Characters;
Copy after login

The following is the output-

+----------------+
| Last5Character |
+----------------+
| to C           |
| Depth          |
| Java           |
| us C           |
+----------------+
4 rows in set (0.04 sec)
Copy after login

Look at the example output above, the space is also counting.

The above is the detailed content of Get last 5 characters of string using MySQL query?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template