이를 위해 CASE 문을 사용할 수 있습니다. 먼저 테이블을 생성하겠습니다 -
mysql> create table DemoTable ( Id int NOT NULL AUTO_INCREMENT PRIMARY KEY, Name varchar(20) ); Query OK, 0 rows affected (1.11 sec)
삽입 명령을 사용하여 테이블에 레코드 삽입 -
mysql> insert into DemoTable(Name) values('John'); Query OK, 1 row affected (0.23 sec) mysql> insert into DemoTable(Name) values('Carol'); Query OK, 1 row affected (0.20 sec) mysql> insert into DemoTable(Name) values('David'); Query OK, 1 row affected (0.13 sec)
select 문을 사용하여 테이블의 모든 레코드 표시 -
mysql> select * from DemoTable;
이것은 다음과 같은 출력을 생성합니다 -
+----+-------+ | Id | Name | +----+-------+ | 1 | John | | 2 | Carol | | 3 | David | +----+-------+ 3 rows in set (0.00 sec)
다음은 MySQL UPDATE STATEMENTS -
를 결합하는 쿼리입니다.mysql> UPDATE DemoTable set Name= case when Name= 'John' then 'John Smith' when Name= 'Carol' then 'Carol Taylor' when Name= 'David' then 'David Miller' end where Name IN('John','Carol','David'); Query OK, 3 rows affected (0.12 sec) Rows matched: 3 Changed: 3 Warnings: 0
테이블에서 업데이트된 레코드를 표시해 보겠습니다. −
mysql> select * from DemoTable;
이것은 다음과 같은 출력을 생성합니다 -
+----+--------------+ | Id | Name | +----+--------------+ | 1 | John Smith | | 2 | Carol Taylor | | 3 | David Miller | +----+--------------+ 3 rows in set (0.00 sec)