Question: 1. Which is the correct format to create table? CREATE Customer TABLE (Customer_id Number, Customer_name Varchar(25), Birthday); CREATE TABLE Customer (Customer_id Number, Customer_name Varchar(25), Birthday);
1.
Which is the correct format to create table?
| "CREATE Customer TABLE (Customer_id Number, Customer_name Varchar(25), Birthday);" | ||
| "CREATE TABLE Customer (Customer_id Number, Customer_name Varchar(25), Birthday);" | ||
| "CREATE TABLE (Customer_id Number, Customer_name Varchar(25), Birthday) INTO Customer;" | ||
| "CREATE Customer TABLES (Customer_id Number, Customer_name Varchar(25), Birthday);" |
2.
Select the correct answer for each blank below to create a table with three columns: id as a primary key, username and email of type varchar.
_____ test (id int, username _____(30), email varchar(20), _____(id))
| CREATE TABLE , Char, Primary Key | ||
| CREATE DATABASE , Primary Key, Varchar | ||
| CREATE TABLE , Varchar, Primary Key | ||
| CREATE , Varchar, Primary Key |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
