EZ

Eduzan

Learning Hub

Eduzan
Eduzan / SQL

Basic SQL Concepts

Definition: A database is a collection of organized data that can be easily accessed, managed, and updated. It stores data in a structured format, typically in tables.

Example :

CREATE DATABASE myDatabase;

Explanation: This command creates a new database named myDatabase. Creating a database is the first step in organizing and storing data which can then be managed using SQL.

End of lesson.