1. Create the table used in the video - Phonebook (LastName,FirstName,PhoneNumber) Video link :https://www.youtube.com/watch?time_continue=1&v=ITcOiLSfVJQ&feature=emb_logo 2. Add at least 5records to...

1 answer below »

1. Create the table used in the video -Phonebook(LastName,FirstName,PhoneNumber)


Video link :https://www.youtube.com/watch?time_continue=1&v=ITcOiLSfVJQ&feature=emb_logo


2. Add at least 5records to the table


3. Create a Clustered Index


3. Create a Non Clustered Index



What to submit:


a. A single query filewith all SQL queries written - Create + Indexes


b. Be sure to addthe appropriate header details as comments


c. Be sure to comply with the correct naming convention of the file - firstnameLastname_Module9Assignment.sql

Answered Same DayApr 02, 2021

Answer To: 1. Create the table used in the video - Phonebook (LastName,FirstName,PhoneNumber) Video link...

Deepti answered on Apr 03 2021
149 Votes
/*Table named Phonebook is created*/
CREATE TABLE PhoneBook
(
PhoneBookID int PRIMARY KEY,
lname
varchar(40) NOT NULL,
fname varchar(40) NOT NULL,
phone varchar(50) NOT NULL
);
/*Five records are inserted into the table Phonebook*/
Insert into Phonebook values...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here