SQL Functions
Min
The MIN() function returns the smallest value of the selected column.
SELECT MIN(column_name) FROM table_name WHERE condition
Max
The MAX() function returns the largest value of the selected column.
SELECT MAX(column_name) FROM table_name WHERE condition
Count
The COUNT() function returns the number of rows that matches a specified criterion.
SELECT COUNT(column_name) FROM table_name WHERE condition
Avg
The AVG() function returns the average value of a numeric column.
SELECT AVG(column_name) FROM table_name WHERE condition
Sum
The SUM() function returns the total sum of a numeric column.
SELECT SUM(column_name) FROM table_name WHERE condition
Now
The NOW() function injects a parameter mapped to the number of milliseconds (u) elapsed since January 1, 1970 00:00:00 UTC.
SELECT * FROM table_name WHERE expiresAt >= NOW()
You can format the value using the default day.js formats. For your convenience an ISO 8601 date format is available using the custom c format, a Unix timestamp is available using the custom U format, and a millisecond Unix timestamp is available useing the custom u format.
SELECT * FROM table_name WHERE expiresAt >= NOW('YYYY-MM-DD')
Date
The DATE() function allows you to format date time values.
SELECT DATE(column_name, 'YYYY-MM-DD') FROM table_name
SELECT * FROM table_name WHERE DATE(column_name, 'u') > NOW()
You can format the value using the default day.js formats. For your convenience an ISO 8601 date format is available using the custom c format, a Unix timestamp is available using the custom U format, and a millisecond Unix timestamp is available useing the custom u format.
Int
The INT() function parses the column value as an integer.
SELECT INT(column_name) FROM table_name
Float
The FLOAT() function parses the column value as an float.
SELECT FLOAT(column_name) FROM table_name
Bool
The BOOL() function parses the column value as a boolean.
SELECT BOOL(column_name) FROM table_name
JSON
The JSON() function parses the column value as a JSON object.
SELECT JSON(column_name) FROM table_name