File tree 1 file changed +14
-6
lines changed 1 file changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -42,25 +42,29 @@ Asterisks (*) denote expressions not natively from MySQL.
42
42
+ [ ` notEq(expr, expr) ` (in MySQL, both ` <> ` and ` != ` are valid)] ( https://dev.mysql.com/doc/refman/8.0/en/comparison-operators.html#operator_not-equal )
43
43
+ [ ` notIn(expr, ...) ` ] ( https://dev.mysql.com/doc/refman/8.0/en/comparison-operators.html#function_not-in )
44
44
+ [ ` nullSafeEq(expr, expr) ` ] ( https://dev.mysql.com/doc/refman/8.0/en/comparison-operators.html#operator_equal-to )
45
- + [ ` nullSafeNotEq(expr, expr) ` * ]
45
+ + ` nullSafeNotEq(expr, expr) ` *
46
46
47
47
Internally, ` NOT (a <=> b) `
48
48
49
49
+ Control-flow
50
- + IF
51
- + CASE
50
+ + [ ` if(boolean, expr, expr) ` ] ( https://dev.mysql.com/doc/refman/8.0/en/control-flow-functions.html#function_if )
51
+ + [ ` case() ` /` case(expr) ` ] ( https://dev.mysql.com/doc/refman/8.0/en/control-flow-functions.html#operator_case )
52
+
52
53
+ Date-time
53
- + TIMESTAMP_ADD
54
- + TIMESTAMP_DIFF
55
- + UTC_TIMESTAMP
54
+ + [ ` timestampAdd(TemporalUnit, bigint, Date) ` ] ( https://dev.mysql.com/doc/refman/8.0/en/date-and-time-functions.html#function_timestampadd )
55
+ + [ ` timestampDiff(TemporalUnit, Date, Date) ` ] ( https://dev.mysql.com/doc/refman/8.0/en/date-and-time-functions.html#function_timestampdiff )
56
+ + [ ` utcTimestamp(0|1|2|3) ` ] ( https://dev.mysql.com/doc/refman/8.0/en/date-and-time-functions.html#function_utc-timestamp )
57
+
56
58
+ Information
57
59
+ DATABASE
58
60
+ FOUND_ROWS
61
+
59
62
+ Math
60
63
+ CEIL
61
64
+ FLOOR
62
65
+ RAND
63
66
+ ROUND
67
+
64
68
+ String
65
69
+ ASCII
66
70
+ BIN
@@ -76,8 +80,10 @@ Asterisks (*) denote expressions not natively from MySQL.
76
80
+ FORMAT
77
81
+ FROM_BASE64
78
82
+ HEX
83
+
79
84
+ Subquery
80
85
+ EXISTS
86
+
81
87
+ Arithmetic
82
88
+ ADD
83
89
+ ADD_AS_DECIMAL*
@@ -87,10 +93,12 @@ Asterisks (*) denote expressions not natively from MySQL.
87
93
+ MUL
88
94
+ NEG
89
95
+ SUB
96
+
90
97
+ Logical
91
98
+ AND
92
99
+ IS NOT NULL AND
93
100
+ NOT
94
101
+ OR
95
102
+ XOR
103
+
96
104
+ Custom Functions
You can’t perform that action at this time.
0 commit comments