[혼공학습단 8기] 혼자 공부하는 SQL _ Chapter 1-2

도비·2022년 6월 30일
0

HGSQL

목록 보기
2/10
post-thumbnail

Chapter 01-1

핵심 키워드 : 데이터베이스, DBMS, 테이블, SQL

Chapter 01-2

핵심 키워드 : MySQL 서버, MySQL 워크벤치, MariaDB

   ✔ How to Install MariaDB on Ubuntu 22.04

ㅤㅤㅤ$ sudo apt update
ㅤㅤㅤ$ sudo apt install mariadb-server
ㅤㅤㅤ$ sudo mysql_secure_installation

   ✔ How to Create a User, Database

ㅤㅤㅤMariaDB [(none)]> create user dobi@'%' identified by 'dobipasswd';
ㅤㅤㅤMariaDB [(none)]> create database dbname;

   ✔ How to Grant Privileges to a User

ㅤㅤㅤ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.

Chapter 02-1

핵심 키워드 : 프로젝트, 폭포수 모델, DB 모델링, 테이블

Chapter 02-2 (1주차 기본 미션)

핵심 키워드 : 스키마, 데이터 형식, 예약어, 기본 키

Chapter 02-3 (1주차 선택 미션)

핵심 키워드 : 인덱스, 뷰, 스토어드 프로시저

0개의 댓글