With Clause

Description

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

This clause is not supported in the update statement of Snowflake

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
	        ;

Last updated