Problem #1101 DATABASE MANAGEMENT SYSTEM USING ORACLE

<p>Create a table EMP_TEMP from the EMP table containing only employees with salary greater than 2000</p><p> Then:</p><p> * Rename the table to EMP_HIGH_SALARY</p><p> * Truncate the table</p><p> * Drop the table</p>

Your Solution