drop function if exists helloworld // create function helloworld() returns varchar(20) begin return "Hello World 2"; end // select helloworld() //