With Clause

Description

Specifies the isolation level at which the UPDATE statement is executed.

Click here to navigate to the IBM DB2 docs page for this syntax.

Grammar Syntax

Sample Source Patterns

IBM DB2

UPDATE EMPLOYEE
     SET JOB=NULL, SALARY=0, BONUS=0, COMM=0
     WITH RR;

Snowflake

UPDATE PUBLIC.EMPLOYEE
     SET JOB=NULL, SALARY=0, BONUS=0, COMM=0
-- ** MSC-WARNING - MSCEWI1002 - REMOVED NEXT STATEMENT, NOT APPLICABLE IN SNOWFLAKE. UPDATE WITH OPTION **
--	 WITH RR
	        ;
  1. MSCEWI1002: Removed next statement, not applicable in SnowFlake

Last updated

Was this helpful?