Use cases
Filter data using an SQL query to display specific data from the database.
You can compose a query:
- As text
TIP:
Do not specify the table name in the
FROM
clause. Specify the table name in the dynamic link to the BrowseName
of the table with an {0:sql_identifier}
placeholder in a string formatter.Use case: filter by time
Expected behavior | Query to achieve the expected behavior |
|---|---|
Export records with a Timestamp greater than a certain instant of time. |
|
Export records with a Timestamp between two instants of time. |
|
Use case: filter by alarm severity
Expected behavior | Query to achieve the expected behavior |
|---|---|
Export the history of alarms with severity 1. |
|
Export the history of alarms with severity between 1 and 3. |
|
Use case: filter by alarm or variable
Expected behavior | Query to achieve the expected behavior |
|---|---|
Export the alarm history with a given BrowseName in the past. |
|
Export the history of alarms connected to the variable. |
|
Export the history of alarms starting with Exclusive. |
|
Use case: filtering Recorded Alarms
Expected behavior | Query to achieve the expected behavior |
|---|---|
Export the alarm history with only the Italian columns. |
|
Provide Feedback