Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 262 Bytes

function.md

File metadata and controls

19 lines (16 loc) · 262 Bytes

Function

CREATE FUNCTION hello (s CHAR(20))
    RETURNS CHAR(50) DETERMINISTIC
    RETURN CONCAT('Hello, ',s,'!');
SELECT hello('world');
+----------------+
| hello('world') |
+----------------+
| Hello, world!  |
+----------------+