Computer >> 컴퓨터 >  >> 프로그램 작성 >> MySQL

MySQL에서 슬래시로 구분된 단어가 있는 문자열에서 하위 문자열을 가져오시겠습니까?

<시간/>

이를 위해 SUBSTRING_INDEX()를 사용할 수 있습니다. 먼저 −

를 생성해 보겠습니다.
mysql> create table DemoTable1416
   -> (
   -> StudentCode varchar(100)
   -> );
Query OK, 0 rows affected (1.56 sec)

insert −

를 사용하여 테이블에 일부 레코드 삽입
mysql> insert into DemoTable1416 values('101/John/Smith');
Query OK, 1 row affected (0.13 sec)
mysql> insert into DemoTable1416 values('901/Carol/Taylor');
Query OK, 1 row affected (0.16 sec)
mysql> insert into DemoTable1416 values('400/David/Miller');
Query OK, 1 row affected (0.12 sec)

select −

를 사용하여 테이블의 모든 레코드 표시
mysql> select * from DemoTable1416;

이것은 다음과 같은 출력을 생성합니다 -

+------------------+
| StudentCode      |
+------------------+
| 101/John/Smith   |
| 901/Carol/Taylor |
| 400/David/Miller |
+------------------+
3 rows in set (0.00 sec)

다음은 슬래시 -

로 구분된 단어가 있는 문자열에서 부분 문자열을 가져오는 쿼리입니다.
mysql> select substring_index(StudentCode,'/',-2) from DemoTable1416;

이것은 다음과 같은 출력을 생성합니다 -

+-------------------------------------+
| substring_index(StudentCode,'/',-2) |
+-------------------------------------+
| John/Smith                          |
| Carol/Taylor                        |
| David/Miller                        |
+-------------------------------------+
3 rows in set (0.00 sec)