Browsing Data
Learn how to browse through your data
Last updated
Learn how to browse through your data
Last updated
A Data Table shows the contents of a particular table. It is composed of several elements:
The table's name
Toggle Filters Button
Table headers
Table data
Copy to Form buttons
Pagination controls
Some headers have an icon before their name. In the example above, the icon next to the first header means that it's a primary key. Here are all the icons you'll see and their meanings:
A table with thousands of rows is hard to browse all at once, which is why the Data Table allows for pagination. The table in the screenshot below has 1,000 rows where the pk
column has values from 1 to 1,000. At the bottom are the pagination controls.
Page Input: The number here reflects the current page number.
Items Per Page Selector: This controls the amount of content rows per page.
Data Range: This shows the range of rows currently being displayed
Next/Previous Page Buttons: Use these buttons to go to the next/previous page
To sort the data, click on a column header. An up arrow means data is being sorted by that column in ascending order and a down arrow means the opposite. There can only be one sorted column at a time.
To start filtering data, click the Toggle Filters Button (1) next to the table's name. This will create a Filter (2) for you. You'll also notice the Add Filter Button (3). This will add another empty filter.
To use a Filter, select a column, an operation, and a value. For example, if we wanted to find out which rows have a customer_id
greater than 5, we'd set the column to "customer_id," operation to "Greater Than," and value to "5."
Here's a complete list of operations:
Less Than/Greater Than: Typically for use with numeric columns, but can be used with textual columns as well.
Equal To: Pretty much what you'd expect for numeric columns. For textual columns, this operation is case-insensitive
Is Null/Is Not Null: Tests if a column is/is not null. There is no value input when this is selected.
The checkbox in the upper-left hand corner of a Filter enables/disables the Filter. A disabled Filter won't be used when requesting data.
The button in the upper-right hand corner of a Filter removes that Filter.
Primary Key: This column uniquely identifies a row. See here for more information.
Foreign Key: This column references a primary key in another table. Clicking this icon will redirect you to the table the key references. See here for more information.
Unique Constraint: Signifies each value in this column must be unique.
The Copy to Form Button on the left of each row will copy all data associated with that row to a new form.