Answers for "IS THEre any difference between using default and := in plsql"

SQL
0

IS THEre any difference between using default and := in plsql

DECLARE
    blood_type CHAR DEFAULT 'O';         -- Same as blood_type CHAR := 'O';
    hours_worked    INTEGER DEFAULT 40;  -- Typical value
    employee_count  INTEGER := 0;        -- No typical value

  BEGIN
    NULL;
  END;
  /
Posted by: Guest on September-02-2021

Code answers related to "IS THEre any difference between using default and := in plsql"

Code answers related to "SQL"

Browse Popular Code Answers by Language