0% found this document useful (0 votes)
20 views1 page

SQL Module 2

The document outlines tasks for a module 2 assignment involving creating a customer table with various columns, inserting records, and using SELECT statements to retrieve specific columns and filter records using a WHERE clause.

Uploaded by

FuriouS
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
20 views1 page

SQL Module 2

The document outlines tasks for a module 2 assignment involving creating a customer table with various columns, inserting records, and using SELECT statements to retrieve specific columns and filter records using a WHERE clause.

Uploaded by

FuriouS
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Module-2 Assignment

Problem Statement:
You have successfully cleared the first semester. In your second semester you will learn how to create
tables, work with where clause and basic operators

Tasks to be done:

1. Create a customer table which comprises of these columns – ‘customer_id’, ‘first_name’,


‘last_name’, ‘email’, ‘address’, ‘city’,’state’,’zip’

2. Insert 5 new records into the table

3. Select only the ‘first_name’ & ‘last_name’ columns from the customer table

4. Select those records where ‘first_name’ starts with “G” and city is ‘San Jose’

You might also like