Langsung ke konten utama

Postingan

Menampilkan postingan dengan label section 7

Section 7 Quiz Database Design Oracle

Section 7 Quiz                 (Answer all questions in this section) 1.            Which of the following would best be represented by an arc?    Mark for Review (1) Points                 STUDENT (senior, male)                 STUDENT (Grade A student, Average Student)                 STUDENT (graduating, female)                 STUDENT ( University, Technical College) (*) 2.            Arcs are Mandatory in Data modeling. All ERD's must have at least one Arc. True or False? ...

Section 7 Quiz Oracle Database Programming with SQL

Section 7 Quiz             (Answer all questions in this section)                                                             1.         Evaluate this SQL statement: SELECT e.employee_id, e.last_name, e.first_name, d.department_name FROM employees e, departments d WHERE e.department_id = d.department_id AND employees.department_id > 5000 ORDER BY 4; Which clause contains a syntax error?  Mark for Review (1) Points             FROM employees e, departments d           ...