drop function if exists helloworld // create function helloworld() returns varchar(20) begin declare l_hello varchar(20) default 'Hello World 3'; return l_hello; end // select helloworld() //