본문 바로가기

DS/fast campus daily report

6.23 (데이터엔지니어링) 데이터 타입들, relational 데이터베이스란, AWS 클라우드 MySQL 데이터베이스 생성

데이터 타입들(7:34)

SQL Data Type

  • Numeric : tinyint, bit, samllint, int, bigint, decimal, numeric, float, real
  • Date/Time : Date, Time, Datetime, timestamp, year
  • Character/String
  • Unicode Character/String
  • Binary
  • boolean
  • Miscellaneous

==> 다양한 data type을 알고 있어야 적용이 가능하다

relational 데이터베이스란(7:18)

Database : Organized Collection of Data, 종류 : RDB(Relational Database), RDBMS(Relational Database Management System)

특징

  • 2차원 테이블로 표현 
  • E-R 모델로 표현됨
  • 테이블 간 관계를 가짐
  • 테이블은 column과 row(record)로 구성됨
  • Normalization

종류

  • MySQL
  • postgreSQL
  • mariaDB
  • oracle 

AWS 클라우드 MySQL 데이터베이스 생성(11:33)

  • storage : provisioned IOPS (input output per second : requested number of i/o operations per second that the db instance can support) (ssd)
  • connectivity : default vpc (vpc-3dlfkksljf), 하나의 가상 환경
  • 비용을 고려해서 환경을 설정해야 함
  • free-tier로 설정해서 테스트할 수 있음

학습 후