insert into shirts(article,color,shirt_size,last_worn)
values
('jaket','navy','L',10),
('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);
1. 데이터 삭제
위 테이블에서 tank top를 빼려고 합니다.
delete from shirts
where article = 'tank top';
delete from 원하는 테이블
where 원하는 컬럼 = 원하는 데이터
이렇게 하시면
tank top가 삭제된걸 볼 수 있습니다.
2. 테이블 삭제
아예 테이블을 삭제 하려고 합니다.
drop table shirts;
drop table 원하는 테이블 ;
하시면 테이블 삭제가 가능합니다.
'MySQL' 카테고리의 다른 글
MySQL의 문자열 일부분 가져오기 substring() (0) | 2021.12.07 |
---|---|
MySQL의 두개의 컬럼 합치기, 컬럼이름 변경해서 출력concat(),concat_ws(),as (0) | 2021.12.07 |
MySQL Workbench의 values 데이터 변경 update, update시 safe mode error 해결 (0) | 2021.12.07 |
MySQL Workbench의 schemas 스키마 DB 만들기 (0) | 2021.12.07 |
MySQL의 데이터 넣기, 여러 개 넣기 insert (0) | 2021.12.07 |