Post

MySQL 사용법 in Linux (Incomplete)

root 계정 생성



mysqladmin -u {root} password {password}






로그인



1
2
3
4
5
6
7
mysql [OPTIONS] [database]

-p, --password[=name]
                      Password to use when connecting to server. If password is
                      not given it's asked from the tty.

-u, --user=name     User for login if not current user.


예를 들어, test db에 접속할 때
mysql -u {root} -p test






Database 생성 및 삭제



  • 생성
    • CREATE DATABASE {db name} CHARACTER SET utf8 COLLATE utf8_general_ci;


  • 삭제
    • DROP DATABASE {db name};


  • 열람
    • SHOW DATABASES;


  • 선택
    • USE {db name}






테이블 생성



1
2
3
4
CREATE TABLE table_name (
    칼럼명1 data_type,
    칼럼명2 data_type
)






테이블 값 조회








테이블 값 추가








테이블 값 수정








테이블 삭제








This post is licensed under CC BY 4.0 by the author.