Builtin SQL Functions
There are over 100 builtin functions to use in user sql statement, they permit faster response and data manipulations.
SQLDatabase.Net library support agrregate functions such as Min and Max, date time functions to simple formatting functions.
Here is the complete list of SQL functions, they are mostly used in SELECT statement, to get complete list you can also use
SYSCMD statement as following, the output will be same. The minus one ( -1 ) means function either require no argument or have no upper limit, such as min and max functions with unlimited number of parameters. There is a hard limit of 100 parameters in each single call if supplied by user as 100 parameters are impractical and likely supplied due to programming error such as wrong string concatenation etc.
SYSCMD View_BuiltIn_Functions;