Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please help on below SQL Server question : The following tables form part of a database held in a relational database management system for a

Please help on below SQL Server question :

The following tables form part of a database held in a relational database management system for a football club, which has many teams in different leagues. The aim of the database is to record its teams progress in a competition. The database consists of the following tables :

PLAYER (PlayerNo, Name, Birth_Date, Age,Street_Address, Town, Phone, TeamNo).

TEAM (TeamNo,Division)

MATCH (MatchNo, TeamNo, PlayerNo)

RESULT(MatchNo, Win_TeamNo).

PAYMENT (PaymentNo, PlayerNo, Payment_Date, Amount).

CONTRACT (PlayerNo, Begin_Date, End_Date, Position).

Assumption: A player has only one contract with the team and plays for only one team. Players contract is not renewed once ended.

Using SQL and TransSQL, formulate the following: (a) The maximum and minimum payment amount of players. (b) Get the player number and name of players who are less than 30 years old and who live in Manchester. The names should be displayed in alphabetical order. (c) The number of wins of each team for each division (d) A procedure getTotalAmountPaid which calculates the total amount paid to a player. The procedure takes as input the payment number and displays the player number, player name and total amount paid. For example, assume that the total amount paid for player No10 is 1000000, the procedure should display the following:

Total Amount paid for Player 10 is 1000000

Many thanks !!!

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Visual Basic Net Database Programming

Authors: Rod Stephens

1st Edition

0789726815, 978-0789726810

More Books

Students also viewed these Databases questions

Question

Does parallax underlie the depth perceived in stereo views?

Answered: 1 week ago