The in tray table describes an electronic in-basket containing a timestamp from when the message was received, the user ID of the person sending the message, and the message itself.
The in tray table is created with the following CREATE TABLE statement:
CREATE TABLE IN_TRAY (RECEIVED TIMESTAMP, SOURCE CHAR(8), SUBJECT CHAR(64), NOTE_TEXT VARCHAR(3000))
The table below gives the contents of the columns.
Column name | Description |
---|---|
RECEIVED | Date and time received |
SOURCE | User ID of person sending the note |
SUBJECT | Brief description of the note |
NOTE_TEXT | The note |