Field |
Field Type |
Null |
Notes |
Description |
DESCRIPTION |
nvarchar(100) |
|
Default = '' |
Description of this educational history status. |
ABBREVIATION |
nvarchar(1) |
|
Default = '' |
Abbreviation of this educational history status. |
CONSTITUENCYIMPLIEDCODE |
tinyint |
|
Default = 0 |
Determines what constituency to add to a record with an educational history of a given status. |
SEQUENCE |
int |
|
Default = 0 |
Sets the sequence of this item in the table. |
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) |
 |
CONVERT(bigint, TS) |
Numeric representation of the timestamp. |
CONSTITUENCYIMPLIED |
nvarchar(7) (Computed) |
 |
CASE [CONSTITUENCYIMPLIEDCODE] WHEN 0 THEN N'Student' WHEN 1 THEN N'Alumni' WHEN 2 THEN N'<None>' END |
Provides a translation for the 'CONSTITUENCYIMPLIEDCODE' field. |