[MySQL] 1. DBMS, MySQL, Database, SQL

Written by Donghyeok (Henry) Lee on Mar 1st, 2023 Views Report Post

DBMS

MySQL

  • A type of DBMS software developed by Oracle.

Database

  • A collection of data that is accessed and used by multiple users simultaneously.

Characteristics of DBMS and Databases

  • Data integrity

  • Data independence

  • Security

  • Minimization of data redundancy

  • Ease of application development and modification

  • Improved data stability

Evolution of Databases

  • Offline management

  • Use of file systems

  • Database management systems

Classification of DBMS

  • Hierarchical DBMS

  • Network DBMS

  • Relational DBMS

  • Object-oriented DBMS

  • Object-relational DBMS

SQL

  • A language used in relational databases.

Running MySQL via terminal

/usr/local/mysql/bin/mysql -u root -p

Executing SQL files

source employees.sql

Checking databases

show databases;

Comments (0)