Field |
Field Type |
Null |
Notes |
Description |
GRADETYPECODE |
tinyint |
|
Default = 2 |
1=Grade, 2=Numeric |
GRADETYPE |
nvarchar(7) (Computed) |
 |
CASE [GRADETYPECODE] WHEN 1 THEN N'Grade' WHEN 2 THEN N'Numeric' END |
Provides a translation for the 'GRADETYPECODE' field. |
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. |
NUMERICGRADE |
decimal(14, 2) |
|
Default = 0 |
The numeric grade received. |
GRADEISBLANK |
int (Computed) |
 |
case GRADETYPECODE when 1 then case when TRANSLATIONTABLEGRADEID is null then 1 else 0 end when 2 then case NUMERICGRADE when -1 then 1 else 0 end end |
When true, indicates that no grade is stored on this record. |
NUMERICGRADEVALUE |
decimal(14, 2) (Computed) |
 |
case GRADETYPECODE when 1 then null when 2 then case NUMERICGRADE when -1 then null else NUMERICGRADE end end |
The numeric grade received. Returns null if grade is letter grade or blank. |