Berserk Docs
ExploreView Modes

Table

Tabular view with column sorting, pagination, and resizable columns

The default view mode. Displays results as a sortable, paginated table with resizable columns. Column types are shown next to each header.

Table view showing query results with column headers and types

Try it

datatable(name:string, score:long, city:string) [
  "Alice", 92, "Stockholm",
  "Bob", 85, "Berlin",
  "Carol", 97, "London",
  "Dave", 78, "New York",
  "Eve", 91, "Tokyo"
]
| order by score desc

Features

  • Column sorting — click a column header to sort ascending or descending
  • Pagination — navigate through large result sets with page controls
  • Resizable columns — drag column borders to adjust widths
  • Column types — each header shows the data type (string, long, datetime, etc.)
  • Full-screen — expand the table to fill the entire viewport

On this page