Abstract: In this paper, we introduce I3DE (Inconsistency Inspecting IDE) - an IDE plug in to inspect inconsistencies in PL/SQL code. We first observed the potential issues, e.g., misuses or bugs, ...
-- 1. Select all columns from employees table SELECT * FROM hr.employees; -- 2. Select employee's first and last names SELECT first_name, last_name FROM hr.employees; -- 3. Select distinct job titles ...