“Criar ou substituir a função” Respostas de código

Criar ou substituir a função

CREATE OR REPLACE FUNCTION totalCustomers 
RETURN number IS 
   total number(2) := 0; 
BEGIN 
   SELECT count(*) into total 
   FROM customers; 
    
   RETURN total; 
END; 
/ 
Relieved Reindeer

Criar ou substituir a função

CREATE [OR REPLACE] FUNCTION function_name 
[(parameter_name [IN | OUT | IN OUT] type [, ...])] 
RETURN return_datatype 
{IS | AS} 
BEGIN 
   < function_body > 
END [function_name];
Relieved Reindeer

Respostas semelhantes a “Criar ou substituir a função”

Procure respostas de código populares por idioma

Procurar outros idiomas de código