TutorialsArena

Enhancing Data Integrity with PostgreSQL Domains: A Practical Guide

This guide focuses on using PostgreSQL's `CREATE DOMAIN` command to create custom data types with constraints. Learn how to enforce data consistency and improve database design with domains. #PostgreSQL #Domains #CREATE DOMAIN #SQL #Database #DataIntegrity



Creating and Managing User-Defined Data Types in PostgreSQL

Introduction

PostgreSQL allows you to create your own data types beyond the built-in types. This is done using the `CREATE DOMAIN` and `CREATE TYPE` commands. This enhances flexibility and allows you to enforce specific constraints or create complex data structures.

`CREATE DOMAIN` Command: Defining Domains with Constraints

The `CREATE DOMAIN` command creates a new data type based on an existing type but adds constraints like `CHECK`, `NOT NULL`, etc. Domains are useful for enforcing consistency across multiple columns in different tables.

Example: Creating a Domain

Let's create a domain called `person_name` that's based on the `VARCHAR` type but disallows null values and spaces:

Creating a Domain

CREATE DOMAIN person_name AS VARCHAR(50) NOT NULL CHECK (value !~ '\s');

This domain ensures that any value assigned to a column of type `person_name` is a non-null string without spaces.

Using the Domain in a Table

You can then use this domain as a data type for columns in your tables:

Using the Domain in a Table

CREATE TABLE Recipients1 (
    Recipient_ID SERIAL PRIMARY KEY,
    First_name person_name,
    Last_name person_name,
    Email VARCHAR(100) NOT NULL
);

(Example showing error handling for inserting invalid data into `Recipients1` would be included here.)

Viewing Domains with psql

(Steps to view domains using the `\dD` command in `psql` would be included here.)

Dropping and Altering Domains

(Explanation of `DROP DOMAIN` and `ALTER DOMAIN` commands, including the use of `CASCADE` for dependency handling, would be added here.)

`CREATE TYPE` Command: Defining Composite Types

The `CREATE TYPE` command lets you define composite types—structures that group together multiple fields of different data types. These are useful as return types for functions that need to return multiple values.

Example: Creating a Composite Type

Creating a Composite Type

CREATE TYPE Item_details AS (
    item_id INT,
    item_name VARCHAR(50),
    item_price NUMERIC(5, 2)
);

Using the Composite Type in a Function

(Example showing a function that uses the `Item_details` type as a return type would be included here.)

Viewing Types with psql

(Steps to view types using `\dT` or `\dT+` in `psql` would be included here.)

Dropping and Altering Types

(Explanation of `DROP TYPE` and `ALTER TYPE` commands, including the use of `CASCADE`, would be added here.)

PostgreSQL's support for user-defined data types—both domains and composite types—significantly enhances database modeling capabilities. Domains promote data consistency, while composite types are valuable for representing complex data structures and for functions that return multiple values.

Viewing User-Defined Types in PostgreSQL

Introduction

This section builds upon the previous discussion of creating user-defined data types (domains and composite types) in PostgreSQL. It details how to view these custom types using the `psql` command-line tool.

Viewing Domains in `psql`

To list all domains in your current database, use the following command in the `psql` console:

Viewing Domains

\dD 

(Example showing the output of `\dD` would be included here.)

Viewing Composite Types in `psql`

To list all composite types (user-defined types created using `CREATE TYPE`), use these commands:

Viewing Composite Types

\dT  
\dT+  

`\dT` lists the names of the types. `\dT+` provides a more detailed view of each type's structure.

(Example showing the output of `\dT` and `\dT+` would be included here.)

Connecting to a Specific Database in `psql`

Before running these commands, make sure you're connected to the correct database. Use the `\c` command:

Connecting to Database

\c database_name

Summary of User-Defined Type Management

This section summarized the key commands for managing user-defined data types in PostgreSQL.

  • `CREATE DOMAIN`: Creates a domain with constraints.
  • `CREATE TYPE`: Creates a composite type.
  • `\dD`: Lists domains in psql.
  • `\dT` or `\dT+`: Lists composite types in psql.
  • `DROP DOMAIN`: Deletes a domain (use `CASCADE` to drop dependent objects).
  • `ALTER DOMAIN`: Modifies a domain.
  • `DROP TYPE`: Deletes a composite type (use `CASCADE` to drop dependent objects).
  • `ALTER TYPE`: Modifies a composite type.

Conclusion

PostgreSQL's user-defined types offer flexibility in database design. Using `psql` commands provides a convenient way to manage and inspect these custom types.