You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from employees | where first_name like ("Eberhar\\*") | keep emp_no, first_name;
157
167
158
168
emp_no:integer | first_name:keyword
159
169
;
160
170
161
171
likeEvalNoWildcard
172
+
required_capability: like_with_list_of_patterns
162
173
from employees | eval x = concat(first_name, "X") | where x like "EberhardtX" | keep emp_no, first_name;
163
174
164
175
emp_no:integer | first_name:keyword
165
176
10013 | Eberhardt
166
177
;
167
178
179
+
likeListNineOrMoreLetters
180
+
required_capability: like_with_list_of_patterns
181
+
from employees | where first_name like ("?????????*") | keep emp_no, first_name | sort emp_no;
182
+
183
+
emp_no:integer | first_name:keyword
184
+
10004 | Chirstian
185
+
10010 | Duangkaew
186
+
10013 | Eberhardt
187
+
10017 | Cristinel
188
+
10025 | Prasadram
189
+
10059 | Alejandro
190
+
10069 | Margareta
191
+
10089 | Sudharsan
192
+
10092 | Valdiodio
193
+
10098 | Sreekrishna
194
+
;
195
+
196
+
notLikeListThreeArgWildcardNotOtherFilter
197
+
required_capability: like_with_list_of_patterns
198
+
from employees | where first_name not like ("Eberhardt*", "Ot*", "Part?") and emp_no < 10010 | keep emp_no, first_name;
199
+
200
+
emp_no:integer | first_name:keyword
201
+
10001 | Georgi
202
+
10002 | Bezalel
203
+
10004 | Chirstian
204
+
10005 | Kyoichi
205
+
10006 | Anneke
206
+
10007 | Tzvetan
207
+
10008 | Saniya
208
+
10009 | Sumant
209
+
;
210
+
211
+
notLikeListThreeArgWildcardOtherFirst
212
+
required_capability: like_with_list_of_patterns
213
+
from employees | where emp_no < 10010 and first_name not like ("Eberhardt*", "Ot*", "Part?") | keep emp_no, first_name;
214
+
215
+
emp_no:integer | first_name:keyword
216
+
10001 | Georgi
217
+
10002 | Bezalel
218
+
10004 | Chirstian
219
+
10005 | Kyoichi
220
+
10006 | Anneke
221
+
10007 | Tzvetan
222
+
10008 | Saniya
223
+
10009 | Sumant
224
+
;
225
+
226
+
notLikeFiveOrLessLetters
227
+
required_capability: like_with_list_of_patterns
228
+
from employees | where first_name not like ("??????*") | keep emp_no, first_name | sort emp_no;
229
+
230
+
emp_no:integer | first_name:keyword
231
+
10003 | Parto
232
+
10011 | Mary
233
+
10014 | Berni
234
+
10021 | Ramzi
235
+
10023 | Bojan
236
+
10029 | Otmar
237
+
10040 | Weiyi
238
+
10041 | Uri
239
+
10042 | Magy
240
+
10045 | Moss
241
+
10049 | Basil
242
+
10057 | Ebbe
243
+
10061 | Tse
244
+
10063 | Gino
245
+
10064 | Udi
246
+
10066 | Kwee
247
+
10071 | Hisao
248
+
10073 | Shir
249
+
10075 | Gao
250
+
10076 | Erez
251
+
10077 | Mona
252
+
10078 | Danel
253
+
10083 | Vishv
254
+
10084 | Tuval
255
+
10097 | Remzi
256
+
;
257
+
258
+
notLikeListMultipleWhere
259
+
required_capability: like_with_list_of_patterns
260
+
from employees | where first_name not like ("Eberhardt*", "Ot*", "Part?", "A*", "B*", "C*", "D*") | where first_name not like ("Eberhard?", "Otm*", "F*", "G*", "H*", "I*", "J*", "K*", "L*")| keep emp_no, first_name;
261
+
262
+
emp_no:integer | first_name:keyword
263
+
10007 | Tzvetan
264
+
10008 | Saniya
265
+
10009 | Sumant
266
+
10011 | Mary
267
+
10012 | Patricio
268
+
10020 | Mayuko
269
+
10021 | Ramzi
270
+
10022 | Shahaf
271
+
10024 | Suzette
272
+
10025 | Prasadram
273
+
10026 | Yongqiao
274
+
10040 | Weiyi
275
+
10041 | Uri
276
+
10042 | Magy
277
+
10043 | Yishay
278
+
10044 | Mingsen
279
+
10045 | Moss
280
+
10047 | Zvonko
281
+
10050 | Yinghua
282
+
10053 | Sanjiv
283
+
10054 | Mayumi
284
+
10057 | Ebbe
285
+
10061 | Tse
286
+
10064 | Udi
287
+
10065 | Satosi
288
+
10069 | Margareta
289
+
10070 | Reuven
290
+
10073 | Shir
291
+
10074 | Mokhtar
292
+
10076 | Erez
293
+
10077 | Mona
294
+
10080 | Premal
295
+
10081 | Zhongwei
296
+
10082 | Parviz
297
+
10083 | Vishv
298
+
10084 | Tuval
299
+
10086 | Somnath
300
+
10087 | Xinglin
301
+
10089 | Sudharsan
302
+
10092 | Valdiodio
303
+
10093 | Sailaja
304
+
10097 | Remzi
305
+
10098 | Sreekrishna
306
+
10099 | Valter
307
+
;
308
+
309
+
notLikeListAllWildcard
310
+
required_capability: like_with_list_of_patterns
311
+
from employees | where first_name not like ("*") | keep emp_no, first_name | sort emp_no | limit 2;
312
+
313
+
emp_no:integer | first_name:keyword
314
+
10030 | null
315
+
10031 | null
316
+
;
317
+
318
+
notLikeListWildcard
319
+
required_capability: like_with_list_of_patterns
320
+
from employees | where first_name not like ("A*","B*", "C*", "D*","E*", "F*", "G*", "H*", "I*", "J*", "K*") | keep emp_no, first_name;
321
+
322
+
emp_no:integer | first_name:keyword
323
+
10003 | Parto
324
+
10007 | Tzvetan
325
+
10008 | Saniya
326
+
10009 | Sumant
327
+
10011 | Mary
328
+
10012 | Patricio
329
+
10019 | Lillian
330
+
10020 | Mayuko
331
+
10021 | Ramzi
332
+
10022 | Shahaf
333
+
10024 | Suzette
334
+
10025 | Prasadram
335
+
10026 | Yongqiao
336
+
10029 | Otmar
337
+
10040 | Weiyi
338
+
10041 | Uri
339
+
10042 | Magy
340
+
10043 | Yishay
341
+
10044 | Mingsen
342
+
10045 | Moss
343
+
10046 | Lucien
344
+
10047 | Zvonko
345
+
10050 | Yinghua
346
+
10053 | Sanjiv
347
+
10054 | Mayumi
348
+
10061 | Tse
349
+
10064 | Udi
350
+
10065 | Satosi
351
+
10069 | Margareta
352
+
10070 | Reuven
353
+
10073 | Shir
354
+
10074 | Mokhtar
355
+
10077 | Mona
356
+
10080 | Premal
357
+
10081 | Zhongwei
358
+
10082 | Parviz
359
+
10083 | Vishv
360
+
10084 | Tuval
361
+
10086 | Somnath
362
+
10087 | Xinglin
363
+
10089 | Sudharsan
364
+
10092 | Valdiodio
365
+
10093 | Sailaja
366
+
10097 | Remzi
367
+
10098 | Sreekrishna
368
+
10099 | Valter
369
+
;
370
+
168
371
169
372
likeAll
170
373
from employees | where first_name like "*" and emp_no > 10028 | sort emp_no | keep emp_no, first_name | limit 2;
0 commit comments