이를 위해 SUBSTRING_INDEX()를 사용할 수 있습니다. 먼저 테이블을 생성하겠습니다 -
mysql> create table DemoTable1962 ( EmployeeInformation text ); Query OK, 0 rows affected (0.00 sec)
삽입 명령을 사용하여 테이블에 일부 레코드 삽입 -
mysql> insert into DemoTable1962 values('101-John-29'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1962 values('102-David-35'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1962 values('103-Chris-28'); Query OK, 1 row affected (0.00 sec)
select 문을 사용하여 테이블의 모든 레코드 표시 -
mysql> select * from DemoTable1962;
이것은 다음과 같은 출력을 생성합니다 -
+---------------------+ | EmployeeInformation | +---------------------+ | 101-John-29 | | 102-David-35 | | 103-Chris-28 | +---------------------+ 3 rows in set (0.00 sec)
다음은 한 열에서 다른 열로 값을 분리하고 선택하는 쿼리입니다. -
mysql> select substring_index(EmployeeInformation, '-', 1) as EmployeeId, substring_index(substring_index(EmployeeInformation,'-',2),'-',-1) AS EmployeeName, substring_index(substring_index(EmployeeInformation,'-',-2),'-',-1) AS EmployeeAge from DemoTable1962;
이것은 다음과 같은 출력을 생성합니다 -
+------------+--------------+-------------+ | EmployeeId | EmployeeName | EmployeeAge | +------------+--------------+-------------+ | 101 | John | 29 | | 102 | David | 35 | | 103 | Chris | 28 | +------------+--------------+-------------+ 3 rows in set (0.00 sec)