UFN_WPBUSINESSOWNERSHIP_BIOS
Gets a table of biography details for a given WPBUSINESSOWNERSHIP ID.
Return
| Return Type |
|---|
| table |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @WPBUSINESSOWNERSHIPID | uniqueidentifier | IN |
Definition
Copy
CREATE function dbo.UFN_WPBUSINESSOWNERSHIP_BIOS(@WPBUSINESSOWNERSHIPID uniqueidentifier)
returns table
as return
--select the biography information
select
ID,
NAME,
BIO
from
dbo.WPBUSINESSOWNERSHIPBIOS
where
WPBUSINESSOWNERSHIPID=@WPBUSINESSOWNERSHIPID