Count of MERGE INTO UPDATE

0

Hi, I'm using MERGE INTO with UPDATE on top of ICEBERG. For example MERGE INTO accounts t USING monthly_accounts_update s ON (t.customer = s.customer) WHEN MATCHED THEN UPDATE SET purchases = s.purchases + t.purchases

I would like to know how many records were updated during this query. I see query result doesn't return this number.

Any option to get the number of updated rows?

Thank you

moshe
asked 4 months ago144 views
No Answers

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions