먼저 테이블을 생성하겠습니다 -
mysql> create table DemoTable -> ( -> EmailId varchar(30) -> ); Query OK, 0 rows affected (0.53 sec)
삽입 명령을 사용하여 테이블에 일부 레코드 삽입 -
mysql> insert into DemoTable values('[email protected]'); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable values('[email protected]'); Query OK, 1 row affected (0.26 sec) mysql> insert into DemoTable values('[email protected]'); Query OK, 1 row affected (0.09 sec) mysql> insert into DemoTable values('[email protected]'); Query OK, 1 row affected (0.10 sec)
select 문을 사용하여 테이블의 모든 레코드 표시 -
mysql> select *from DemoTable;
이것은 다음과 같은 출력을 생성합니다 -
+---------------------+ | EmailId | +---------------------+ | [email protected] | | [email protected] | | [email protected] | | [email protected] | +---------------------+ 4 rows in set (0.00 sec)
다음은 문자열의 일부를 바꾸는 쿼리입니다 -
mysql> update DemoTable -> set EmailId=replace(EmailId,'[email protected]','[email protected]'); Query OK, 2 rows affected (0.16 sec) Rows matched: 4 Changed: 2 Warnings: 0
다시 한번 테이블 기록을 확인해보자 -
mysql> select *from DemoTable;
이것은 다음과 같은 출력을 생성합니다 -
+-------------------+ | EmailId | +-------------------+ | [email protected] | | [email protected] | | [email protected] | | [email protected] | +-------------------+ 4 rows in set (0.00 sec)