0
drop function if exists getVarDatum;
create function getVarDatum
(
  aYear integer,
  aMonth integer
)
returns date
begin
  declare date_string varchar(10);
  set date_string = cast(aYear as char(4)) || '-' ||
  case 
    when aMonth < 10 then '0'||cast(aMonth as char(1))
  else
    cast(aMonth as char(2))
  end || '-' || '01';
  return cast(date_string as date);
end;
Category: 
SQL Functions & Procedures
Current Version: 
1.00
Supported Products: 
NexusDB V2
NexusDB V3
Home