fork download
  1. create table employees
  2. (ID_NUMBER NUMBER Primary Key,
  3. NAME VARCHAR2 (30),
  4. DEPARTMENT_ID NUMBER,
  5. SALARY NUMBER (7,2),
  6. HIRE_DATE DATE);
  7.  
  8. Insert into employees valyes
  9. (1,'Rachel',7345,30000,'19-09-2001');
  10.  
  11. SELECT id_number, name, department_id, SUM(salary)
  12. FROM employees
  13. WHERE salary > 25000
  14. GROUP BY department_id, id_number, name
  15. ORDER BY hire_date;
  16.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
gnatgcc -c -pipe -O2 prog.adb
prog.adb:1:01: compilation unit expected
prog.adb:9:04: strings are delimited by double quote character
gnatmake: "prog.adb" compilation error
stdout
Standard output is empty