Learn how to create and use virtual derived tables in Pixeltable through views
Views in Pixeltable are best used when you need to:
Choose views over tables when your data is derived from other base tables and needs to stay synchronized with its source. Use regular tables when you need to store original data or when the computation cost of deriving data on demand is too high.
Iterator Views
Views created using iterators to transform data:
Query Views
Views created from query operations:
Query views like regular tables:
Add computed columns to views:
Create views based on other views:
Views automatically update when base tables change
Views compute data on demand, saving storage
Views can be part of larger data workflows