79741666

Date: 2025-08-20 22:58:12
Score: 0.5
Natty:
Report link

Try to put `CREATE OR REPLACE TABLE ... AS` before your query.

CREATE OR REPLACE TABLE your_dataset.your_table AS
WITH my_cte AS (
SELECT ... 
)
SELECT * FROM my_cte;

This keeps your query the same, but saves the result into a table.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: marky