Mega Code Archive

 
Categories / Oracle PLSQL Tutorial / Introduction
 

Use parentheses () to specify the order of execution for the operators

SQL> SQL> SELECT 10 * (12 / 3 - 1) FROM dual; 10*(12/3-1) -----------          30 SQL>