Clinical Effect SQL Functions

CASCO_All_Clinical_Effects

Display the name of all selected clinical effects and the value descriptor for the case.

 

Return Value:

Returns a text list of all selected clinical effects with the value descriptor.

Parameters:

CaseNumber, CenterCode, YearCode: Uniquely Identifies the case for which the information should be returned

Delimiter: Characters to display for each separate value.

Value Descriptor:

0 = long description (e.g. Related, Not Related, etc.)

1 = short description (e.g. R, N, etc.)

Example:      

(dbo.CASCO_All_Clinical_Effects(ToxPat.CaseNumber, ToxPat.CenterCode, ToxPat.YearCode, ', ', 0)) AS All_ClinicalEffects

CASCO_Any_Clinical_Effect

Determine if any clinical effects have been selected for the case.

 

Return Value:

Returns a value of 1 if any clinical effect is selected.

Returns a value of 0 if no clinical effects are selected.

Parameters:

CaseNumber, CenterCode, YearCode: Uniquely Identifies the case for which the information should be returned

Delimiter: Characters to display for each separate value.

Example:

(dbo.CASCO_Any_Clinical_Effect(ToxPat.CaseNumber, ToxPat.CenterCode, ToxPat.YearCode)) AS Any_ClinicalEffect