drop function if exists helloworld // create function helloworld(param1 varchar(100)) returns varchar(100) begin return CONCAT('Hello World and ',param1) ; end //