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

MySQL의 기존 int 열 값에 문자를 추가하시겠습니까?

<시간/>

기존 int 열 값에 문자를 추가하려면 MySQL CONCAT()을 사용하십시오. 먼저 테이블을 생성하겠습니다 -

mysql> create table DemoTable
(
   Amount int
);
Query OK, 0 rows affected (1.44 sec)

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

mysql> insert into DemoTable values(709);
Query OK, 1 row affected (0.67 sec)
mysql> insert into DemoTable values(34560);
Query OK, 1 row affected (0.30 sec)
mysql> insert into DemoTable values(90854);
Query OK, 1 row affected (0.28 sec)
mysql> insert into DemoTable values(3456);
Query OK, 1 row affected (0.15 sec)

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

mysql> select *from DemoTable;

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

+--------+
| Amount |
+--------+
|    709 |
|  34560 |
|  90854 |
|   3456 |
+--------+
4 rows in set (0.00 sec)

다음은 열 값에 문자를 추가하는 쿼리입니다 -

mysql> select concat('The Product Amount is=',Amount) AS AddingCharacters from DemoTable;

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

+-----------------------------+
| AddingCharacters            |
+-----------------------------+
| The Product Amount is=709   |
| The Product Amount is=34560 |
| The Product Amount is=90854 |
| The Product Amount is=3456  |
+-----------------------------+
4 rows in set (0.00 sec)