drop function if exists helloworld // create function helloworld() returns varchar(20) begin declare l_hello, l_world, l_string varchar(20); set l_hello = 'Hello'; set l_world = 'World'; set l_string = concat(l_hello,' ',l_world,' 4'); return l_string; end //