Is there a way to add optional parameters to a stored procedure in Teradata?
I know in Oracle it is:
create or replace procedure myProcedure (param1 in varchar2 default null, param2 in number default null)
and in SQLServer it is:
CREATE PROCEDURE MyProcName
@Parameter1 INT = 1,
@Parameter2 VARCHAR (100) = 'StringValue',
@Parameter3 VARCHAR (100) = NULL
Is there a Teradata equivalent? I looked on the web and found nothing.