Multiple choice technology mainframe

SQL can

  1. Create Database

  2. Update Table

  3. Drop Views

  4. Reverse Table

Reveal answer Fill a bubble to check yourself
A,B,C Correct answer
Explanation

SQL is a comprehensive language that can create databases, update tables with INSERT/UPDATE, and drop views with DROP VIEW. However, SQL has no 'REVERSE TABLE' command - reversing table order is done through queries with ORDER BY, not a DDL operation.