EDUCATIONALMAJOR
Contains a constituent's educational major history.
Primary Key
Primary Key |
Field Type |
ID |
uniqueidentifier |
Fields
Field |
Field Type |
Null |
Notes |
Description |
COMMENT |
nvarchar(255) |
|
Default = '' |
Any comments about the constituent's major. |
DATEADDED |
datetime |
|
Default = getdate() |
Indicates the date this record was added. |
DATECHANGED |
datetime |
|
Default = getdate() |
Indicates the date this record was last changed. |
TS |
timestamp |
|
|
Timestamp. |
TSLONG |
bigint (Computed) |
yes |
CONVERT(bigint, TS) |
Numeric representation of the timestamp. |
Foreign Keys
Foreign Key |
Field Type |
Null |
Notes |
Description |
EDUCATIONALHISTORYID |
uniqueidentifier |
|
EDUCATIONALHISTORY.ID
|
FK to EDUCATIONALHISTORY |
EDUCATIONALMAJORCODEID |
uniqueidentifier |
|
EDUCATIONALMAJORCODE.ID
|
Constituent's major in the educational institution. |
ADDEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
CHANGEDBYID |
uniqueidentifier |
|
CHANGEAGENT.ID
|
FK to CHANGEAGENT. |
Indexes
Index Name |
Fields |
Unique |
Primary |
Clustered |
IX_EDUCATIONALMAJOR_DATEADDED |
DATEADDED |
|
|
yes |
IX_EDUCATIONALMAJOR_DATECHANGED |
DATECHANGED |
|
|
|
PK_EDUCATIONALMAJOR |
ID |
yes |
yes |
|
Triggers