function::user_int64 - Linux
Overview
The function::user_int64
command is a function that returns a new user-defined function of type Int64
that returns the provided Int64
value.
Syntax
function::user_int64(int64_value)
Parameters
int64_value
: TheInt64
value to return.
Options/Flags
None.
Examples
-- Example 1: Define a user-defined function that returns the value 42
DEFINE(my_function, function::user_int64(42));
-- Example 2: Use the user-defined function in a query
SELECT my_function()
Common Issues
None.
Integration
The function::user_int64
command can be used to create user-defined functions that return Int64
values. This can be useful for creating custom functions for use in queries.
Related Commands
function::user_int32
function::user_int64
function::user_float32
function::user_float64