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

MySQL의 문자열 값이 있는 열에서 처음 15자만 반환

<시간/>

문자열 값에서 처음 15자만 반환하려면 MySQL SUBSTR() 함수를 사용하십시오.

먼저 테이블을 생성하겠습니다 -

mysql> create table DemoTable
(
   Title varchar(100)
);
Query OK, 0 rows affected (0.69 sec)

삽입 명령을 사용하여 테이블에 일부 레코드 삽입 -

mysql> insert into DemoTable values('Introduction to MySQL');
Query OK, 1 row affected (0.19 sec)
mysql> insert into DemoTable values('Introduction to Java');
Query OK, 1 row affected (0.13 sec)
mysql> insert into DemoTable values('C in Depth with data structure and algorithm');
Query OK, 1 row affected (0.15 sec)

select 문을 사용하여 테이블의 모든 레코드 표시 -

mysql> select *from DemoTable;

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

+----------------------------------------------+
| Title                                        |
+----------------------------------------------+
| Introduction to MySQL                        |
| Introduction to Java                         |
| C in Depth with data structure and algorithm |
+----------------------------------------------+
3 rows in set (0.00 sec)

이제 처음 15자만 가져오는 쿼리를 구현해 보겠습니다. -

mysql> select substr(Title,1,15) from DemoTable;

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

+--------------------+
| substr(Title,1,15) |
+--------------------+
| Introduction to    |
| Introduction to    |
| C in Depth with    |
+--------------------+
3 rows in set (0.00 sec)