About 24 results
Open links in new tab
  1. What are database schemas? 5 minute guide with examples

    Apr 29, 2024 · A database schema is an abstract design that represents storage of your data in a database. Learn the basics of database schemas with common examples.

  2. Database design tutorial for beginning developers - Educative

    Apr 28, 2020 · The first step to designing a relational database is to define the schema. The schema is a map of where all the data lives in tables – table names, column names. The schema shows how tables relate to each other – from our example above, how to use the name table to look up the address associated with the person.

  3. Scaffolding a Model from a Database Schema - Educative

    It involves scaffolding a model (DbContext and entity types) from a database schema. It is also known as the Database First workflow. Use reverse engineering when you want the database schema to be the primary source of truth. In this lesson, we’ll do the following: Create a database from an SQL file. Scaffold a model from the database.

  4. What is a database query? SQL and NoSQL queries explained

    Aug 31, 2020 · A database query is a request for a database’s data so we can retrieve or manipulate it. But, when should we query a database, and what exactly are we doing? In this article, we’ll introduce you to database queries with multiple common uses, including SQL, NoSQL, MongoDB, PostgreSQL, and more.

  5. What is a database Foreign Key? A beginner's tutorial - Educative

    Nov 30, 2020 · A foreign key is a column (or group of columns) used in a relational database to link data between tables. This tutorial will introduce you to foreign keys and show you how to use them in SQL.

  6. Install `simple-schema` for Collection Validation - Educative

    Install Simple Schema for Collection Validation. Learn about database schemas and their use.

  7. Schemas and Instances - Educative

    The schema and instance are the essential terms related to databases. In this lesson, we will discuss the key differences between the two.

  8. Relational Database Schemas - Educative

    Database Design Fundamentals for Software Engineers / Relational Database Schemas In this lesson, we will discuss the basic concepts behind relational database schemas.

  9. The Three-Schema Architecture - Educative

    The goal of the three-schema architecture is to separate the user applications from the physical database. In this architecture, schemas can be defined at the following three levels: 1.

  10. How to create a table in SQLAlchemy - Educative

    SQLAlchemy simplifies creating and managing database tables in Python straightforward and intuitive. We can easily create and maintain databases across various database systems by defining the table structures as Python classes.

Refresh