반응형
Mysql 기반 DB에서 여러개의 Insert를 할때 한번의 Insert 구문으로 여러개를 한꺼번에 Insert 할 수 있습니다.
values 값에 괄호로 입력할 값을 묶어주면 여러개를 동시에 할수 있어서 편리한 점이 많습니다.
-- 데이터 조회
MariaDB [test]> select * from t2 ;
Empty set (0.00 sec)
-- insert
MariaDB [test]> insert into t2 values ('aa','11'), ('bb','22'), ('cc','33') ;
Query OK, 3 rows affected (0.00 sec)
Records: 3 Duplicates: 0 Warnings: 0
-- 데이터 조회
MariaDB [test]> select * from t2 ;
+------+------+
| c1 | c2 |
+------+------+
| aa | 11 |
| bb | 22 |
| cc | 33 |
+------+------+
3 rows in set (0.00 sec)
MariaDB [test]>
이상 Mysql/Maria 멀티 insert에 대해 설명하였습니다.
반응형
'Database > Mysql' 카테고리의 다른 글
Current charset is x-windows-949. If password has been set using other charset, consider using option 'passwordCharacterEncoding' (2) | 2022.06.29 |
---|---|
Mysql / Mariadb Backup Shell Script (sqldump) (0) | 2020.12.21 |
Mysql/Mariadb 컬럼 변경/추가 (0) | 2020.12.16 |
Mysql/Mariadb 버전 확인 (0) | 2020.12.16 |
Mysql/Mariadb 테이블 및 오브젝트 정보 확인 (0) | 2020.12.16 |
댓글