Зміст курсу
Introduction to SQL
Introduction to SQL
Structure of an SQL Database System
At this point, it would be useful to understand what are the different parts that work together to form a Database System, and more importantly, what is a database system itself?
A Database System or Database Management System consists of many different parts, some of which include:
-
Database Engine: the main service which is responsible for storing and managing data. In our case, it is the Microsoft SQL Server;
-
Query Language: a way to interact with data, usually SQL (Structured Query Language), which lets users insert, update, delete, and retrieve data;
-
Database Management Tool: a visual tool for interacting with the Database Engine in a user-friendly manner. For example SSMS, phpMyAdmin etc..
Note
SQL Server can consist of multiple "Databases" as we saw in SSMS
Each database can have Tables, and Tables, in turn, can have rows. It is recommended to have a separate database for each project or organization. For example, storing the data of both employees of a company and students of a school in a single database is a bad practice.
Дякуємо за ваш відгук!