Write the SQL commands to perform the following tasks:
(i) View the list of tables in the database Exam
(ii) View the structure of the table Term1
-- (i) View the list of tables in the database Exam
SHOW TABLES;
-- (ii) View the structure of the table Term1
DESCRIBE Term1;
Explanation:
The SHOW TABLES command lists all the tables in the currently selected database. Ensure that the database Exam is selected before executing this command using USE Exam.
The DESCRIBE command displays the structure of the specified table Term1, including column names, data types, and constraints.
Draw a rough sketch for the curve $y = 2 + |x + 1|$. Using integration, find the area of the region bounded by the curve $y = 2 + |x + 1|$, $x = -4$, $x = 3$, and $y = 0$.