Person Table
Jump to navigation
Jump to search
A Person Table is a Relational Table for Person Data.
- Context:
- It can have an Identifier Attribute.
- It can have a Person Name Attribute.
- Example(s):
- A Relational Table with the following DDL associated to it
CREATE TABLE Person (id INTEGER PRIMARY KEY, first_name CHAR(50) NULL, last_name CHAR(75) NOT NULL, dateofbirth DATE NULL );
- A Relational Table with the following DDL associated to it
- See: Person Record Set.