Chapter 5. DML
1. DML a. C : insert / into 데이터 추가 ⦁ 기본은 백커터(`)를 넣어 사용하며 데이터베이스를 use 상태면 생략 가능 1. insert /*================>================*/ select * from student_mst; insert into student_mst (student_id,student_name,mentor_id) values (5, '이강용', 10), (6, '김준경', 10), (7, '이현수', 10), (8, '정의현', 10); select * from university_mst; insert into university_mst (university_id, university_name) values (4, '카이스트'), (5,..
2023. 1. 25.