All Downloads are FREE. Search and download functionalities are using the official Maven repository.

db.books.41_functions_F.sql Maven / Gradle / Ivy

-- Functions
-- Informix syntax
CREATE FUNCTION CustomAdd(One INT, Two INT)
  RETURNING INT;
  RETURN One + Two;
END FUNCTION  
@

CREATE FUNCTION CustomAdd(One INT)
  RETURNING INT;
  RETURN CustomAdd(One, 1);
END FUNCTION  
@




© 2015 - 2025 Weber Informatics LLC | Privacy Policy