[MySQL] - [1] - [ DB, table 생성, insert, use, show, select ]
drop database if exists bookdb; create database bookDB; show databases; use bookDB; show tables; create table booktbl( id int auto_increment primary key, -- id | int형 | 자동 오름차순 출력 -- primary는 table당 하나이며, row의 대푯값이다. bookname varchar(20) not null, -- not null : 공백 불가. publisher varchar(20) not null, price int not null ); insert into booktbl values(null, 'book100', 'com100', 100); -- id칸에 null을 썼..
2022. 1. 22.