is there any difference between using default and 3a 3d in plsql

Solutions on MaxInterview for is there any difference between using default and 3a 3d in plsql by the best coders in the world

showing results for - "is there any difference between using default and 3a 3d in plsql"
Sofia
19 Sep 2017
1DECLARE
2    blood_type CHAR DEFAULT 'O';         -- Same as blood_type CHAR := 'O';
3    hours_worked    INTEGER DEFAULT 40;  -- Typical value
4    employee_count  INTEGER := 0;        -- No typical value
5
6  BEGIN
7    NULL;
8  END;
9  /
10
similar questions