Skip to content

Latest commit

 

History

History

data-schema

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Data schema

A data schema is the structure or blueprint of a database. It defines the organization, storage, and relationships among data elements, tables, views, and other database objects. The schema provides a framework for organizing data and ensuring data integrity and consistency.

A data schema typically includes a description of each data element or attribute, such as its data type, size, and format. It also defines the relationships among the tables or views, including the primary and foreign keys used to connect them. In addition, the schema may define views, stored procedures, and other database objects.

The schema is usually created using a data definition language (DDL), such as SQL, and is stored in the database catalog. It is important to note that the schema can be modified as needed to accommodate changes in the data or business requirements.

Common types:

  • Entity-Relationship (ER) schema: This type of schema defines the entities or objects in the database, as well as their attributes and relationships.

  • Relational schema: This type of schema defines the tables, columns, and relationships in a relational database.

  • Object-oriented schema: This type of schema defines the objects, classes, and inheritance relationships in an object-oriented database.

  • Document schema: This type of schema defines the structure and relationships of documents in a document-oriented database.