Updated on 2024-04-28 GMT+08:00

LOW_PRIORITY

With the LOW_PRIORITY modifier, execution of UPDATE is delayed.

Input

1
2
# LOW_PRIORITY 
UPDATE LOW_PRIORITY employees SET department_id=2;

Output

1
2
-- LOW_PRIORITY     
UPDATE "public"."employees" SET "department_id" = 2;