문자열을 숫자와 연결하려면 CONCAT() 메서드를 사용합니다. 먼저 테이블을 생성하겠습니다 -
mysql> create table DemoTable682( Name varchar(100), Age int ); Query OK, 0 rows affected (0.49 sec)
삽입 명령을 사용하여 테이블에 일부 레코드 삽입 -
mysql> insert into DemoTable682 values('John',23); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable682 values('Chris',21); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable682 values('David',25); Query OK, 1 row affected (0.17 sec) Display all records from the table using select statement:
select 문을 사용하여 테이블의 모든 레코드 표시 -
mysql> select *from DemoTable682;
이것은 다음과 같은 출력을 생성합니다 -
+-------+------+ | Name | Age | +-------+------+ | John | 23 | | Chris | 21 | | David | 25 | +-------+------+ 3 rows in set (0.00 sec)
다음은 레코드를 연결하는 concat() 메서드를 구현하는 쿼리입니다. -
mysql> select concat(Name,Age) from DemoTable682;
이것은 다음과 같은 출력을 생성합니다 -
+------------------+ | concat(Name,Age) | +------------------+ | John23 | | Chris21 | | David25 | +------------------+ 3 rows in set (0.00 sec)