Database SQL Operation: Student.readStudentCaseParticipant
Description: | Reads a student record and returns the participant name and their caseParticipantRoleID. |
Sterotype: | ns |
SELECT
Student.caseParticipantRoleID,
ConcernRole.concernRoleName,
ConcernRole.primaryAlternateID
INTO
:caseParticipantRoleID,
:participantName,
:alternateID
FROM
Student,
CaseParticipantRole,
ConcernRole
WHERE Student.evidenceID = :evidenceID
AND CaseParticipantRole.caseParticipantRoleID = Student.caseParticipantRoleID
AND ConcernRole.concernRoleID = CaseParticipantRole.participantRoleID
|