먼저 테이블을 생성하겠습니다 -
mysql> create table DemoTable -> ( -> Id int, -> Name varchar(20) -> ); Query OK, 0 rows affected (0.93 sec)
삽입 명령을 사용하여 테이블에 일부 레코드 삽입 -
mysql> insert into DemoTable values(101,'Chris'); Query OK, 1 row affected (0.25 sec) mysql> insert into DemoTable values(102,'David'); Query OK, 1 row affected (0.23 sec) mysql> insert into DemoTable values(103,'Robert'); Query OK, 1 row affected (0.16 sec)
select 문을 사용하여 테이블의 모든 레코드 표시 -
mysql> select *from DemoTable;
이것은 다음과 같은 출력을 생성합니다-
+------+--------+ | Id | Name | +------+--------+ | 101 | Chris | | 102 | David | | 103 | Robert | +------+--------+ 3 rows in set (0.00 sec)
다음은 열 값을 별도의 텍스트로 연결하는 MySQL 쿼리입니다. -
mysql> select concat('The student id and name is= ', Id , ',' , Name, ' .') from DemoTable;
이것은 다음과 같은 출력을 생성합니다 -
+---------------------------------------------------------------+ | concat('The student id and name is= ', Id , ',' , Name, ' .') | +---------------------------------------------------------------+ | The student id and name is= 101,Chris . | | The student id and name is= 102,David . | | The student id and name is= 103,Robert . | +---------------------------------------------------------------+ 3 rows in set (0.01 sec)