Skip to main content
Skip to main content
Edit this page

system.projections

Contains information about existing projections in all tables.

Columns:

Example

SELECT * FROM system.projections LIMIT 2 FORMAT Vertical;
Row 1:
──────
database:    default
table:       landing
name:        improved_sorting_key
type:        Normal
sorting_key: ['user_id','date']
query:       SELECT * ORDER BY user_id, date

Row 2:
──────
database:    default
table:       landing
name:        agg_no_key
type:        Aggregate
sorting_key: []
query:       SELECT count()