users のcellを実行したあとの結果ファイルをテーブルとしてアクセスすることができます。
SQL
load_data
load_data関数を使用することで他のcellの結果をテーブルのように扱うことができます。
以下のように記述した場合
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
users のcellを実行したあとの結果ファイルをテーブルとしてアクセスすることができます。
{{
config(
name="user_data_with_age_over_20",
description="User data with age over 20",
)
}}
select
*
from
{{ load_data("users") }}
where
age > 20