CRUD(advanced)

Creating the dots·2021년 11월 11일
0

SQL

목록 보기
8/21

Udemy The Ultimate MySQL Bootcamp Section 6를 복습하며 작성한 쿼리문입니다.

CREATE DATABASE shirts_db;
USE shirts_db;

CREATE TABLE shirts
  (
    shirt_id INT NOT NULL AUTO_INCREMENT,
    article VARCHAR(100),
    color VARCHAR(100),
    shirt_size VARCHAR(100),
    last_worn INT,
    PRIMARY KEY(shirt_id)
  );
  
//CREATE
INSERT INTO shirts(article, color, shirt_size, last_worn) VALUES
('t-shirt', 'white', 'S', 10),
('t-shirt', 'green', 'S', 200),
('polo shirt', 'black', 'M', 10),
('tank top', 'blue', 'S', 50),
('t-shirt', 'pink', 'S', 0),
('polo shirt', 'red', 'M', 5),
('tank top', 'white', 'S', 200),
('tank top', 'blue', 'M', 15)
INSERT INTO shirts (color, article, shirt_size, last_worn) values ('purple', 'polo shirt', 'M', 50);

//READ
SELECT article, color, shirt_size, last_worn FROM shirts WHERE shirt_size='M';

//UPDATE
UPDATE shirts SET shirt_size='L' WHERE article='polo shirt';
UPDATE shirts SET last_worn=0 WHERE last_worn=15;
UPDATE shirts SET shirt_size='XS', color='off white' WHERE color='white';

//DELETE
DELETE FROM shirts WHERE last_worn=200;
DELETE FROM shirts WHERE article='tank top';
DELETE FROM shirts;
DROP TABLE shirts;
profile
어제보다 나은 오늘을 만드는 중

0개의 댓글