Metainformationen zur Seite
  •  
Übersetzungen dieser Seite:

Dies ist eine alte Version des Dokuments!


How to filter your row data

This document briefly explains how to use the data filter syntax.

Column names

If a column name contains any of these special characters ~ ( ) # \ / = > < + - * % & | ^ ' „ [ ], you must enclose the column name within square brackets [ ]. If a column name contains right bracket ] or backslash \, escape it with backslash (\] or \\).

  1. "id = 10"; // no special character in column name "id"
  2. "$id = 10"; // no special character in column name "$id"
  3. "[#id] = 10"; // special character "#" in column name "#id"
  4. "[[id\]] = 10"; // special characters in column name "[id]"

Literals

String values are enclosed within single quotes ' '. If the string contains single quote ', the quote must be doubled.

  1.