핵심 키워드 : 데이터베이스, DBMS, 테이블, SQL
핵심 키워드 : MySQL 서버, MySQL 워크벤치, MariaDB
ㅤㅤㅤ$ sudo apt update
ㅤㅤㅤ$ sudo apt install mariadb-server
ㅤㅤㅤ$ sudo mysql_secure_installation
ㅤㅤㅤMariaDB [(none)]> create user dobi@'%' identified by 'dobipasswd';
ㅤㅤㅤMariaDB [(none)]> create database dbname;
ㅤㅤㅤMariaDB [(none)]> grant all privileges on dbname.* to dobi@'%';
To tell the server to reload the grant tables, perform a flush-privileges operation. This can be done by issuing a FLUSH PRIVILEGES statement or by executing a mysqladmin flush-privileges or mysqladmin reload command.
핵심 키워드 : 프로젝트, 폭포수 모델, DB 모델링, 테이블
핵심 키워드 : 스키마, 데이터 형식, 예약어, 기본 키
핵심 키워드 : 인덱스, 뷰, 스토어드 프로시저