You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mistake in the step - 4 last section code of the cortex on iceberg guide
UPDATE demo.public.product_reviews AS pr
SET sentiment = jan.review_sentiment
FROM {{sql_reviews_jan}} AS jan
WHERE jan.id = pr.id;
it should rather be something like below -
UPDATE demo.public.product_reviews AS pr
SET sentiment = snowflake.cortex.sentiment(prs.review)
FROM demo.public.product_reviews AS prs
WHERE prs.id = pr.id;
The text was updated successfully, but these errors were encountered:
standure
changed the title
mistake in the step - 4 last section code
quick start guide - Sentiment Analysis Using Snowflake Cortex AI on Iceberg Tables - mistake in the step - 4 last section code
Aug 31, 2024
mistake in the step - 4 last section code of the cortex on iceberg guide
UPDATE demo.public.product_reviews AS pr
SET sentiment = jan.review_sentiment
FROM {{sql_reviews_jan}} AS jan
WHERE jan.id = pr.id;
it should rather be something like below -
UPDATE demo.public.product_reviews AS pr
SET sentiment = snowflake.cortex.sentiment(prs.review)
FROM demo.public.product_reviews AS prs
WHERE prs.id = pr.id;
The text was updated successfully, but these errors were encountered: