Purchase Solution

MS SQL SERVER 2003

Not what you're looking for?

Ask Custom Question

MS SQL SERVER 2003

Problem 1
Write SQL queries
1. Write a SQL query that joins Customer and Store table in the Kudler database and uses BETWEEN to restrict record selection (use Store Name to restrict the data).
2. Write a SQL query that Customer and Store table in the Kudler database and uses LIKE to restrict record selection (use Store Phone Number to restrict data).
3. Group Customers by Store Name: Select the Customer's last name and group them by Store Name.
4. Choose a Customer from the Customer table, delete this Customer.
5. Calculate the maximum labor cost for all item types from the Item Table.

Problem 2
In addition create your own SQL query from the database
· GROUP statement
· UNION statement
· JOIN statement
· INSERT statement
· DELETE/DROP statement

Purchase this Solution

Solution Summary

MS SQL SERVER 2003 is studied.

Solution Preview

select Store.Store_Name, Store.Store_Phone_Number, Customer.Phone_Number
from Store inner join Customer on Store.Store_City = Customer.City
where Store.Store_Name between 'CircuitCity' and 'TigerDirect';

select Store.Store_Name, Store.Store_Phone_Number, ...

Purchase this Solution


Free BrainMass Quizzes
Word 2010: Tables

Have you never worked with Tables in Word 2010? Maybe it has been a while since you have used a Table in Word and you need to brush up on your skills. Several keywords and popular options are discussed as you go through this quiz.

Basic Networking Questions

This quiz consists of some basic networking questions.

Javscript Basics

Quiz on basics of javascript programming language.

Basic UNIX commands

Use this quiz to check your knowledge of a few common UNIX commands. The quiz covers some of the most essential UNIX commands and their basic usage. If you can pass this quiz then you are clearly on your way to becoming an effective UNIX command line user.

Inserting and deleting in a linked list

This quiz tests your understanding of how to insert and delete elements in a linked list. Understanding of the use of linked lists, and the related performance aspects, is an important fundamental skill of computer science data structures.