UFN_EDUCATIONALHISTORY_GETMINOR
Returns educational minor history for a given constituent.
Return
Return Type |
---|
table |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@EDUCATIONALHISTORYID | uniqueidentifier | IN |
Definition
Copy
create function dbo.UFN_EDUCATIONALHISTORY_GETMINOR(
@EDUCATIONALHISTORYID uniqueidentifier
)
returns table
as
return (
select
ID,
EDUCATIONALMAJORCODEID,
COMMENT
from
dbo.EDUCATIONALMINOR
where
EDUCATIONALHISTORYID = @EDUCATIONALHISTORYID
)