Using the column level, write the SQL statements to create the table named Customer. [3 marks]
Column Name Data Type Size Constraint
CustNo Number 5 Should not be repeated and not empty
Name Varchar2 30 -
Age Number 3 Age should be greater than or equal to 18
Country Varchar2 20 -
PhoneNo Number 10 Should not be repeated
2. Modify the Customer Table with the details shown below: [2 marks]
Column Name Data Type Size Constraint
Name Varchar2 20 Should not be empty
Age Number 3 -
3. Write a query to add column to the Customer Table. [1 mark]
Column Name Data Type DateofBirth Date
Title_with_topic: SQL Statements for Creating and Modifying the Customer Table