Mega Code Archive

 
Categories / PostgreSQL / Postgre SQL
 

Joined words

postgres=# CREATE FUNCTION "compound_word" (text,text) RETURNS text AS ' postgres'#      DECLARE postgres'#        -- defines an alias name for the two input values postgres'#        word1 ALIAS FOR $1; postgres'#        word2 ALIAS FOR $2; postgres'#      BEGIN postgres'#        -- displays the resulting joined words postgres'#        RETURN word1 || word2; postgres'#      END; postgres'#   ' LANGUAGE 'plpgsql'; CREATE FUNCTION postgres=# postgres=# select compound_word('www.rntsoft.com',' Postgre SQL');        compound_word ----------------------------  www.rntsoft.com Postgre SQL (1 row) postgres=# postgres=#