File tree Expand file tree Collapse file tree 1 file changed +24
-7
lines changed
docs/reference/sql/functions Expand file tree Collapse file tree 1 file changed +24
-7
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,10 @@ Functions that return one of their arguments by evaluating in an if-else manner.
11
11
.Synopsis:
12
12
[source, sql]
13
13
----
14
- COALESCE(expression<1>, expression<2>, ...)
14
+ COALESCE(
15
+ expression, <1>
16
+ expression, <2>
17
+ ...)
15
18
----
16
19
17
20
*Input*:
@@ -51,7 +54,10 @@ include-tagged::{sql-specs}/docs.csv-spec[coalesceReturnNull]
51
54
.Synopsis:
52
55
[source, sql]
53
56
----
54
- GREATEST(expression<1>, expression<2>, ...)
57
+ GREATEST(
58
+ expression, <1>
59
+ expression, <2>
60
+ ...)
55
61
----
56
62
57
63
*Input*:
@@ -92,7 +98,9 @@ include-tagged::{sql-specs}/docs.csv-spec[greatestReturnNull]
92
98
.Synopsis:
93
99
[source, sql]
94
100
----
95
- IFNULL(expression<1>, expression<2>)
101
+ IFNULL(
102
+ expression, <1>
103
+ expression) <2>
96
104
----
97
105
98
106
*Input*:
@@ -129,7 +137,9 @@ include-tagged::{sql-specs}/docs.csv-spec[ifNullReturnSecond]
129
137
.Synopsis:
130
138
[source, sql]
131
139
----
132
- ISNULL(expression<1>, expression<2>)
140
+ ISNULL(
141
+ expression, <1>
142
+ expression) <2>
133
143
----
134
144
135
145
*Input*:
@@ -166,7 +176,10 @@ include-tagged::{sql-specs}/docs.csv-spec[isNullReturnSecond]
166
176
.Synopsis:
167
177
[source, sql]
168
178
----
169
- LEAST(expression<1>, expression<2>, ...)
179
+ LEAST(
180
+ expression, <1>
181
+ expression, <2>
182
+ ...)
170
183
----
171
184
172
185
*Input*:
@@ -208,7 +221,9 @@ include-tagged::{sql-specs}/docs.csv-spec[leastReturnNull]
208
221
.Synopsis:
209
222
[source, sql]
210
223
----
211
- NULLIF(expression<1>, expression<2>)
224
+ NULLIF(
225
+ expression, <1>
226
+ expression) <2>
212
227
----
213
228
214
229
*Input*:
@@ -243,7 +258,9 @@ include-tagged::{sql-specs}/docs.csv-spec[nullIfReturnNull]
243
258
.Synopsis:
244
259
[source, sql]
245
260
----
246
- NVL(expression<1>, expression<2>)
261
+ NVL(
262
+ expression, <1>
263
+ expression) <2>
247
264
----
248
265
249
266
*Input*:
You can’t perform that action at this time.
0 commit comments