View
Platform

Prediction Games Platform

One application, one container, one database, multiple isolated games.

Table filter guide

Complete reference for simple filters, wildcards, RegEx, safe SQL, natural language and the visual query builder.

All filtering runs locally in your browser over the rows already displayed. SQL mode never executes database commands and natural-language filters are not sent to an external AI service.

1. Simple filtering

Type in any column filter. The row remains visible when the cell contains that text. Searches ignore upper/lower case and accents.

ESP · Alvaro · 100

2. Wildcards (Dynamics-style)

CommandMeaningExample
*Any number of charactersAl*
?Exactly one characterJo?n
!Exclude a pattern when placed first!ESP
, or |Match any listed patternESP|AUT
..Inclusive numeric or text range50..100

3. RegEx (ECMAScript)

Use JavaScript regular-expression syntax. Patterns are case-insensitive by default; /pattern/flags syntax is also accepted.

CommandMeaningExample
.Any single charactera.c
^ $Start and end of the value^ESP$
* + ?Zero or more, one or more, optionalab+c?
*? +? ?? {n,m}?Lazy quantifiers return the shortest possible match.*?
{n} {n,} {n,m}Exact, minimum or bounded repetitions\d{2,4}
[abc] [a-z] [^x]Character sets, ranges and negation^[A-Z]
\d \D \w \W \s \SDigit, word and whitespace classes and their negations^\d+$
\bWord boundary\bESP\b
| ( ) (?: )Alternatives, capturing and non-capturing groupsESP|AUT
(?<name> ) \1 \k<name>Named groups and numeric/named backreferences(\w+)\s+\1
(?= ) (?! ) (?<= ) (?<! )Positive/negative lookahead and lookbehind\d+(?= pts)
\p{...} \P{...}Unicode property classes when using the u or v flag\p{L}+
/pattern/dgimsuvyOptional JavaScript RegEx flags/esp|aut/iu
\Escape a special character\.

4. Safe SQL query

Write a WHERE-style expression using column headers. Put headers containing spaces inside [square brackets]. Only row-filter operators are accepted.

WHERE Puntos >= 100 AND Subsidiary IN ('ESP','AUT')
[Jugador] LIKE 'Al%' OR [Puesto] BETWEEN 1 AND 10
CommandMeaning
= != <> > >= < <=Comparison operators
LIKE / NOT LIKESQL wildcards: % for any text and _ for one character
IN / NOT INMatch or exclude a value list
BETWEEN / NOT BETWEENInclusive range
IS NULL / IS NOT NULLEmpty or non-empty cell
CONTAINS / STARTS / ENDSConvenient text operators
AND OR ( )Combine and group conditions

SELECT, UPDATE, DELETE, INSERT, JOIN, functions, comments and subqueries are intentionally unsupported.

5. Natural language

Write the column name followed by a common instruction. Join conditions with AND/OR or their translated equivalents.

Puntos mayor que 100 y Subsidiary igual a ESP
Jugador empieza por Al o Jugador contiene Maria

Understood concepts: contains, does not contain, equals, different, starts with, ends with, greater/less than, at least/at most, is empty and is not empty.

6. Visual query builder

Choose a column, operator and value. Add as many AND/OR conditions as needed. Empty/not-empty operators do not require a value.

Back to help