왕현성
코딩발자취
왕현성
전체 방문자
오늘
어제
  • 코딩 (277)
    • Python (71)
    • Java (16)
    • MySQL (34)
    • 인공지능 (48)
      • 머신러닝 (16)
      • 딥러닝 (32)
    • 영상처리 (4)
    • Rest API (21)
    • Android Studio (25)
    • streamlit (13)
    • DevOps (22)
      • AWS (9)
      • PuTTY (5)
      • Git (4)
      • Serverless (2)
      • Docker (2)
    • IT 기술 용어 (6)
    • 디버깅 ( 오류 해결 과정 ) (17)

블로그 메뉴

  • 홈
  • 태그
  • 방명록

공지사항

인기 글

태그

  • matplotlib
  • 비지도학습
  • 영상처리역사
  • unsupervised
  • pytorch
  • yolov8
  • encoding='utf-8'
  • 영상처리
  • alibi-detection
  • ComputerVision
  • alibidetect
  • OpenCV
  • pip install labelme
  • labelme UnocodeDecodeError
  • TensorFlow
  • tune()
  • maskimage
  • numpy
  • labelme
  • UnboundLocalError
  • 영상기술
  • 컴퓨터비전
  • PIL
  • PYTHON
  • ckpt_file
  • 의료이미징
  • imageprocessing
  • get_long_description
  • 딥러닝
  • 기상탐사

최근 댓글

최근 글

티스토리

250x250
hELLO · Designed By 정상우.
왕현성

코딩발자취

MySQL - CRUD 실습 문제 풀이
MySQL

MySQL - CRUD 실습 문제 풀이

2022. 12. 6. 15:06
728x90

이 글 이전에 포스팅한 CRUD로 실습 문제풀이를 하는 과정입니다.

 

1.

2.

select article,color
from shirts;

3.

select article,color,shirt_size,last_worn
from shirts
where shirt_size='M';

4.

update shirts
set shirt_size = 'L'
where article = 'polo shirt';

5.

update shirts
set last_worn = 0
where last_worn > 15;

6.

update shirts
set shirt_size = 'XS' , color = 'off white'
where color = 'white';

7.

delete from shirts
where last_worn > 200;

8.

delete from shirts
where article = 'tank top';

9.

delete from shirts;

10.

drop table shirts;

 

'MySQL' 카테고리의 다른 글

MySQL - substring() 문자열 일부분 가져오기  (0) 2022.12.06
MySQL - concat(),concat_ws(),as / 두개의 컬럼 합치기, 컬럼이름 변경해서 출력  (0) 2022.12.06
MySQL - CRUD (Create, Read, Update, Delete / 데이터를 생성, 읽기, 갱신, 삭제)  (0) 2022.12.06
MySQL - id 컬럼 만드는 방법  (0) 2022.12.06
MySQL - 여백 없애는 방법 / NULL없애는 방법  (0) 2022.12.06
    'MySQL' 카테고리의 다른 글
    • MySQL - substring() 문자열 일부분 가져오기
    • MySQL - concat(),concat_ws(),as / 두개의 컬럼 합치기, 컬럼이름 변경해서 출력
    • MySQL - CRUD (Create, Read, Update, Delete / 데이터를 생성, 읽기, 갱신, 삭제)
    • MySQL - id 컬럼 만드는 방법
    왕현성
    왕현성
    AI 머신비전 학습일지

    티스토리툴바