<7주차_2일>SQL (2) 기초 명령어

Nary Kim·2023년 6월 20일
0

베이직 커맨드 두번째 시간이다.
데이터베이스 제어 명령어에 대해서 알아본다.

  • 데이터베이스 그룹을 만들때 다음과 같이 쓰면 다국어와 이모지까지 지원이 가능하다.
create database dbname default character set utf8mb4; # utf8mb4 : 다국어와 이모지 지원
  • 테이블 만들기
  • 데이터베이스 안에 여러 테이블을 만들어서 다루는 듯 하다.
create table tablename
(
	columnname datatype,
	columnname datatype,
    ...
)
  • 데이터 베이스 안에 있는 테이블 보기
  • 보고 싶은 테이블 상제 정보보기 (상세내용말고 데이터프레임의 .info()와 같은 역할)
show tables;
desc tablename; # 해당 테이블의 상세정보
  • alter table: 테이블을 바꿀꺼야! 라고 말해주는 것.
# alter table tablename rename new_tablename;
alter table mytable rename person;
# alter table tablename add column col_name datatype;
alter table person add column agee double;
# alter table tablename Modify column col_name datatype;
alter table person modify column agee int;
# alter table tablename change column old_columnnamed new_columnnamed new_datatype;
alter table person change column agee age int;
# alter table tablename drop column col_name;
alter table person drop column age;
profile
나는 무엇이 될것인가!!

0개의 댓글