yugabyte=# DO $$
yugabyte$# DECLARE
yugabyte$# total_rows INT;
yugabyte$# BEGIN
yugabyte$# CREATE TABLE t (c1 INT, c2 TEXT);
yugabyte$# INSERT INTO t VALUES (1, 'A'), (2, 'B'), (3, 'C');
yugabyte$# GET DIAGNOSTICS total_rows := ROW_COUNT;
yugabyte$# RAISE NOTICE 'Rows inserted : total_rows: %', total_rows;
yugabyte$# UPDATE t SET c2 = 'Z' WHERE c1 IN (1, 3);
yugabyte$# GET DIAGNOSTICS total_rows := ROW_COUNT;
yugabyte$# RAISE NOTICE 'Rows updated : total_rows: %', total_rows;
yugabyte$# END $$;
NOTICE: Rows inserted : total_rows: 3
NOTICE: Rows updated : total_rows: 2
DO