hoony's web study

728x90
반응형

Pixabay로부터 입수된 Tafilah Yusof님의 이미지 입니다.


맥에서 사용하던 편한 툴이 현재 문제가 생겨서 쓰게된 insert 문입니다. 
한줄씩 insert 문을 복사해서 생성하는 것 보다는 아래처럼 value 이후 것만 복사해서 사용을 하니 너무 편하네요. ^^

참고 URL 
https://www.mariadbtutorial.com/mariadb-basics/mariadb-insert-multiple-rows/

 

MariaDB Insert Multiple Rows Into a Table

In this tutorial, you will learn how to use the MariaDB insert statement to insert multiple rows into a table.

www.mariadbtutorial.com


예제

INSERT INTO tb_cmmncd_cd (cmmncd_type, cmmncd_nm, cmmncd_val, cmmncd_note, sort_order, cmmncd_parent, use_yn, reg_id, reg_dt) VALUES
                                ('contact_type_cd', '대표전화', '#', '대표전화', 144, 238,'Y', 'system', current_timestamp()),
                                ('contact_type_cd', '문의전화', '#', '문의전화', 145, 238,'Y', 'system', current_timestamp()),
                                ('contact_type_cd', '상단관리자번호', '#', '상단관리자번호', 146, 238,'Y', 'system', current_timestamp()),
                                ('contact_type_cd', 'SMS 발신번호', '#', 'SMS 발신번호', 147, 238,'Y', 'system', current_timestamp()),
                                ('contact_type_cd', '이벤트관리자번호', '#', '이벤트관리자번호', 148, 238,'Y', 'system', current_timestamp()),
                                ('contact_type_cd', '담당자이메일', '#', '담당자이메일', 149, 238,'Y', 'system', current_timestamp());

 

728x90

공유하기

facebook twitter kakaoTalk kakaostory naver band
loading