본문 바로가기
MySQL

MySQL 알아보기 01

by 코딩대원 2022. 9. 14.

MYSQL

MYSQL은 데이터베이스 소프트웨어입니다.
일반적으로 데이터를 추가하거나 검색, 추출하는 기능을 모두 포함해서 데이터 베이스라고 부릅니다.

MYSQL은 세계에서 가장 많이 쓰이는 오픈 소스의 관계형 데이터베이스 관리시스템(RDBMS) 입니다.
MYSQL은 PHP 스크립트 언어와 상호 연동이 잘 되면서 오픈소스로 개발된 무료 프로그램 입니다.
그래서 홈페이지나 쇼핑몰(워드프레스, 카페24, 제로보드, 그누보드)등 일반적으로 웹 개발에 널리 사용하고 있습니다.


MYSQL 설치

MAMP란 웹사이트를 개발할 때 쓰이는 기술 스택인 macOS, Apache, MYSQL, PHP의 약어이자 솔루션 스택이다.
https://www.mamp.info/en/downloads/


MYSQL 실행

윈도우 : cd MAMP/bin/mysql/bin
로그인 : mysql -uroot -proot

mysql: [Warning] Using a password on the command line interface can be insecure.
    Welcome to the MySQL monitor.  Commands end with ; or \g.
    Your MySQL connection id is 7
    Server version: 5.7.24 MySQL Community Server (GPL)

    Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.

    Oracle is a registered trademark of Oracle Corporation and/or its
    affiliates. Other names may be trademarks of their respective
    owners.

    Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

맥 : cd Application/MAMP/bin/mysql/bin
로그인 :./mysql -uroot -proot

webstoryboyhwang@Webstoryboyui-MacBookPro bin % ./mysql -uroot -proot
    mysql: [Warning] Using a password on the command line interface can be insecure.
    Welcome to the MySQL monitor.  Commands end with ; or \g.
    Your MySQL connection id is 188
    Server version: 5.7.34 MySQL Community Server (GPL)

    Copyright (c) 2000, 2021, Oracle and/or its affiliates.

    Oracle is a registered trademark of Oracle Corporation and/or its
    affiliates. Other names may be trademarks of their respective
    owners.

    Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

데이터베이스

데이터베이스 만들기

create database 데이터베이스 이름

mysql> create database sample01;
Query OK, 1 row affected (0.00 sec)

데이터베이스 보기

show databases;

mysql> show databases;
    +--------------------+
    | Database           |
    +--------------------+
    | information_schema |
    | mysql              |
    | performance_schema |
    | sample01           |
    | sample02           |
    | sys                |
    +--------------------+
    6 rows in set (0.00 sec)

데이터베이스 사용

use database;

mysql> use sample01
    Database changed

데이터베이스 삭제

drop database 데이터베이스 이름;

mysql> drop database sample02;
    Query OK, 0 rows affected (0.00 sec)
    

테이블

테이블 만들기

create table 테이블 이름;

create table member(
    myMemberID int(10) unsigned auto_increment,
    youEmail varchar(40) NOT NULL,
    youName varchar(20) NOT NULL,
    youPass varchar(20) NOT NULL,
    youBirth int(20) NOT NULL,
    regTime int(20) NOT NULL,
    primary key(myMemberID)
    ) charset=utf8;

테이블 전체보기

show tables;

mysql> show tables;
    +--------------------+
    | Tables_in_sample01 |
    +--------------------+
    | member             |
    +--------------------+
    1 row in set (0.00 sec)

테이블 보기

desc 테이블 이름;

mysql> desc member;
    +------------+------------------+------+-----+---------+----------------+
    | Field      | Type             | Null | Key | Default | Extra          |
    +------------+------------------+------+-----+---------+----------------+
    | myMemberID | int(10) unsigned | NO   | PRI | NULL    | auto_increment |
    | youEmail   | varchar(40)      | NO   |     | NULL    |                |
    | youName    | varchar(20)      | NO   |     | NULL    |                |
    | youPass    | varchar(20)      | NO   |     | NULL    |                |
    | youBirth   | int(20)          | NO   |     | NULL    |                |
    | regTime    | int(20)          | NO   |     | NULL    |                |
    +------------+------------------+------+-----+---------+----------------+
    6 rows in set (0.00 sec)

테이블 삭제

drop table 테이블 이름;

mysql> drop table member;
    Query OK, 0 rows affected (0.01 sec)

테이블 복사


테이블 데이터

데이터 입력하기

INSERT INTO 테이블이름(필드명) VALUES(데이터);

INSERT INTO 
    member(
    youEmail, youName, youPass, youBirth, regTime
    ) VALUES(
    'eodnjs9605@naver.com', '김대원', '1234', 19960530, 1234567
    );

데이터 불러오기

SELECT 필드명 FROM 테이블 이름 WHERE 조건;

전체 데이터 불러오기

mysql> select * from member;
    +------------+--------------------------+---------+---------+----------+---------+
    | myMemberID | youEmail                 | youName | youPass | youBirth | regTime |
    +------------+--------------------------+---------+---------+----------+---------+
    |          1 | eodnjs9605@naver.com     | 김xx  | 1234    | 19960530 | 1234567 |
    |          2 | webstoryboy@naver.com    | 황xx  | 1234    | 19990303 | 1234567 |
    |          3 | thdtjdgml415@naver.com   | 송xx  | 1234    | 19970415 | 1234567 |
    |          4 | mo0647@naver.com         | 김xx  | 1234    | 19970530 | 1234567 |
    |          5 | tjrwnsrkdtj@naver.com    | 김xx  | 1234    | 19941009 | 1234567 |
    |          6 | jwor124@naver.com        | 정xx  | 1234    | 19990303 | 1234567 |
    |          7 | leesh3432@naver.com      | 이xx  | 1234    | 19970205 | 1234567 |
    |          8 | sshin4882@naver.com      | 박xx  | 1234    | 19990303 | 1234567 |
    |          9 | to_before@naver.com      | 김xx  | 1234    | 19970809 | 1234567 |
    |         10 | kkb7528@naver.com        | 권xx  | 1234    | 19990303 | 1234567 |
    |         11 | ghkddbwls96@gmail.com    | 황xx  | 1234    | 19990303 | 1234567 |
    |         12 | kkk5993@naver.com        | 김xx  | 1234    | 19960617 | 1234567 |
    |         13 | wjsqhdus971007@gmail.com | 전xx  | 1234    | 19971007 | 1234567 |
    |         14 | noeyheyh@gmail.com       | 권xx  | 1234    | 19960331 | 1234567 |
    |         15 | hjkang306@gmail.com      | 강xx  | 1234    | 19990303 | 1234567 |
    |         16 | sunhey9810@gmail.com     | 박xx  | 1234    | 19981010 | 1234567 |
    |         17 | kde66034@gmail.com       | 김xx  | 1234    | 19700101 | 1234567 |
    |         18 | praise1109@gmail.com     | 이xx  | 1234    | 19990303 | 1234567 |
    |         19 | oranssy@naver.com        | 최xx  | 3950    | 20010415 | 1234567 |
    |         20 | kimlh3743@gmail.com      | 김xx  | 1234    | 20011009 | 1234567 |
    |         21 | happyham52@gmail.com     | 이xx  | 1234    | 19970731 | 1234567 |
    +------------+--------------------------+---------+---------+----------+---------+
    21 rows in set (0.00 sec)

myMemberID가 6번인 경우

mysql> select * from member where myMemberID = 6;
    +------------+-------------------+---------+---------+----------+---------+
    | myMemberID | youEmail          | youName | youPass | youBirth | regTime |
    +------------+-------------------+---------+---------+----------+---------+
    |          6 | jwor124@naver.com | 정xx  | 1234    | 19990303 | 1234567 |
    +------------+-------------------+---------+---------+----------+---------+
    1 row in set (0.00 sec)

email 중에 naver 텍스트를 포함하고 있는 경우

mysql> select * from member where youEmail LIKE "%naver%";
    +------------+------------------------+---------+---------+----------+---------+
    | myMemberID | youEmail               | youName | youPass | youBirth | regTime |
    +------------+------------------------+---------+---------+----------+---------+
    |          1 | eodnjs9605@naver.com   | 김xx  | 1234    | 19960530 | 1234567 |
    |          2 | webstoryboy@naver.com  | 황xx  | 1234    | 19990303 | 1234567 |
    |          3 | thdtjdgml415@naver.com | 송xx  | 1234    | 19970415 | 1234567 |
    |          4 | mo0647@naver.com       | 김xx  | 1234    | 19970530 | 1234567 |
    |          5 | tjrwnsrkdtj@naver.com  | 김xx  | 1234    | 19941009 | 1234567 |
    |          6 | jwor124@naver.com      | 정xx  | 1234    | 19990303 | 1234567 |
    |          7 | leesh3432@naver.com    | 이xx  | 1234    | 19970205 | 1234567 |
    |          8 | sshin4882@naver.com    | 박xx  | 1234    | 19990303 | 1234567 |
    |          9 | to_before@naver.com    | 김xx  | 1234    | 19970809 | 1234567 |
    |         10 | kkb7528@naver.com      | 권xx  | 1234    | 19990303 | 1234567 |
    |         12 | kkk5993@naver.com      | 김xx  | 1234    | 19960617 | 1234567 |
    |         19 | oranssy@naver.com      | 최xx  | 3950    | 20010415 | 1234567 |
    +------------+------------------------+---------+---------+----------+---------+
    12 rows in set (0.00 sec)

데이터 수정하기

UPDATE 테이블 이름 SET 수정필드 = 수정값 WHERE 조건;

    

데이터 삭제하기

drop table 테이블 이름;

    

댓글


HTML
CSS

JAVASCRIPT

자세히 보기