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

모든 열 값에서 마지막 두 단어를 삭제하는 MySQL 쿼리


이를 위해 MySQL의 LEFT() 함수를 사용할 수 있습니다. 먼저 테이블을 생성하겠습니다 -

mysql> create table DemoTable
   -> (
   -> Name varchar(10)
   -> );
Query OK, 0 rows affected (0.71 sec)

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

mysql> insert into DemoTable values('John');
Query OK, 1 row affected (0.17 sec)
mysql> insert into DemoTable values('Chris');
Query OK, 1 row affected (0.07 sec)
mysql> insert into DemoTable values('Robert');
Query OK, 1 row affected (0.11 sec)

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

mysql> select *from DemoTable;

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

+--------+
|  Name  |
+--------+
|  John  |
|  Chris |
| Robert |
+--------+
3 rows in set (0.00 sec)

다음은 모든 열 값에서 마지막 두 단어를 삭제하는 쿼리입니다-

mysql> select left(Name,length(Name)-2) from DemoTable;

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

+---------------------------+
| left(Name,length(Name)-2) |
+---------------------------+
| Jo                        |
| Chr                       |
| Robe                      |
+---------------------------+
3 rows in set (0.02 sec)