MySQL/MySQL icia 28일차
MySQL 쿼리 작성해보기
데이터는 아래를 참조하였다. 더보기 -- book table drop table if exists book; create table book( id bigint auto_increment, b_bookname varchar(20) not null, b_publisher varchar(10) not null, b_price bigint not null, constraint book primary key(id) ); insert into book(b_bookname, b_publisher, b_price) values('축구의 역사','굿스포츠',7000); insert into book(b_bookname, b_publisher, b_price) values('축구스카우팅 리포트','나무수',13000);..