November 2015
Beginner
464 pages
9h 46m
English
PostgreSQL provides two methods for implementing user-defined data types through the following commands:
CREATE DOMAIN command allows developers to create a user-defined data type with constraints. This helps in making the source code more modular.CREATE TYPE command is often used to create a composite type, which is useful in procedural languages, and is used as the return data type. Also, one can use the create type to create the ENUM type, which is useful in decreasing the number of joins, specifically for lookup tables.Often, developers tend not to use the user-defined data types, and use flat tables instead due to a lack of support on the driver side, such as JDBC and ODBC. ...
Read now
Unlock full access