users cell as a table.
SQL
load_data
By using the load_data function, you can treat the results of other cells as a table.
If you write as follows, you can access the result file after executing the
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
users cell as a table.
{{
config(
name="user_data_with_age_over_20",
description="User data with age over 20",
)
}}
select
*
from
{{ load_data("users") }}
where
age > 20