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

단일 MySQL 쿼리에서 여러 열을 변경하시겠습니까?


이를 위해 MySQL에서 UPDATE 및 REPLACE()를 사용합니다. 먼저 테이블을 생성하겠습니다 -

mysql> create table DemoTable
   -> (
   -> StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY,
   -> StudentName varchar(100),
   -> StudentCountryName varchar(100)
   -> );
Query OK, 0 rows affected (0.67 sec)

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

mysql> insert into DemoTable(StudentName,StudentCountryName) values('John','US');
Query OK, 1 row affected (0.15 sec)

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

mysql select *from DemoTable;

출력

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

+-----------+-------------+--------------------+
| StudentId | StudentName | StudentCountryName |
+-----------+-------------+--------------------+
|         1 | John        | US                 |
+-----------+-------------+--------------------+
1 row in set (0.00 sec)

다음은 여러 열을 업데이트하는 쿼리입니다 -

mysql> update DemoTable
   -> set StudentName=replace(StudentName,'John','Chris'),
   -> StudentCountryName=replace(StudentCountryName,'US','UK');
Query OK, 1 row affected (0.69 sec)
Rows matched: 1 Changed: 1 Warnings: 0

다시 한번 테이블 기록을 확인해보자 -

mysql> select *from DemoTable;

출력

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

+-----------+-------------+--------------------+
| StudentId | StudentName | StudentCountryName |
+-----------+-------------+--------------------+
|         1 | Chris       | UK                 |
+-----------+-------------+--------------------+
1 row in set (0.00 sec)