Annotation: core.get_account_name

CREATE OR REPLACE FUNCTION core.get_account_name(bigint)
RETURNS text

Information: core.get_account_name

Schema core
Function Name get_account_name
Arguments bigint
Owner postgres
Result Type text
Description

Implementation: core.get_account_name

CREATE OR REPLACE FUNCTION core.get_account_name(bigint)
 RETURNS text
 LANGUAGE plpgsql
 STABLE
AS $function$
BEGIN
    RETURN account_name
    FROM core.accounts
    WHERE account_id=$1;
END
$function$