Figure 1 shows the syntax diagram for assigning a value to a variable.
The above syntax diagram is explained as follows:
1 2 3 4 5 6 7
DECLARE emp_id INTEGER := 7788; --Assignment BEGIN emp_id := 5; --Assignment emp_id := 5*7784; END; /