"3,4,and 5 are answered" as per our policy we are only allowed to solve 3 subparts.kindly reupload rest of the question 3 create table CREATE TABLE table1 ( day varchar(255), client_code varchar(255),...




"3,4,and 5 are answered"


as per our policy we are only allowed to solve 3 subparts.kindly reupload rest of the question


3 create table


CREATE TABLE table1 (
    day varchar(255),
    client_code varchar(255),
    client_name varchar(255),
    team_ID varchar(255),
    member int,
   team_leader varchar(255),
  leader_wage int,
  total int
);







Step 2


4.insert data into table


INSERT INTO table1 (day,client_code,client_name,team_ID,member,team_leader,leader_wage,total) VALUES (
  'monday','c4','aeliana gebahard','T3','6','jaymes merrickson','350','850');
INSERT INTO table1 (day,client_code,client_name,team_ID,member,team_leader,leader_wage,total) VALUES (
' ','c10','alfher dareia','T1','6','geoffrey glover','250','750');
INSERT INTO table1 (day,client_code,client_name,team_ID,member,team_leader,leader_wage,total) VALUES (
  ' ','c8','felina diodotus','T2','5','elmer victorson','300','700');
INSERT INTO table1 (day,client_code,client_name,team_ID,member,team_leader,leader_wage,total) VALUES (
' ','c9','brutus sighild','T4','7','norris mamadou','400','1000');
INSERT INTO table1 (day,client_code,client_name,team_ID,member,team_leader,leader_wage,total) VALUES (
  'tuesday','c5','sigibert quirinus','T3','6','jaymes merrickson','350','850');
INSERT INTO table1 (day,client_code,client_name,team_ID,member,team_leader,leader_wage,total) VALUES (
' ','c9','brutus sigihild','T2','5','elmer victorson','300','700');
INSERT INTO table1 (day,client_code,client_name,team_ID,member,team_leader,leader_wage,total) VALUES (
' ','c10','alfher dreia','T5','5','duncan gardyner','450','850');
INSERT INTO table1 (day,client_code,client_name,team_ID,member,team_leader,leader_wage,total) VALUES (
' ','c7','servius ambrosia','T1','6','geoffrey glover','250','750');
INSERT INTO table1 (day,client_code,client_name,team_ID,member,team_leader,leader_wage,total) VALUES (
' ','c10','alfher dareai','T2','5','elmer victorson','300','700');


INSERT INTO table1 (day,client_code,client_name,team_ID,member,team_leader,leader_wage,total) VALUES (
  'wednesday','c10','alfher dareia','T3','6','jaymes merrickson','350','850');
INSERT INTO table1 (day,client_code,client_name,team_ID,member,team_leader,leader_wage,total) VALUES (
' ','c1','nikolaos gallus','T4','7','norris mamadou','400','1000');
INSERT INTO table1 (day,client_code,client_name,team_ID,member,team_leader,leader_wage,total) VALUES (
  ' ','c3','amalia prochoros','T2','5','elmer victorson','300','700');
INSERT INTO table1 (day,client_code,client_name,team_ID,member,team_leader,leader_wage,total) VALUES (
' ','c8','felina diodotus','T3','6','jaymes merrickson','350','850');
INSERT INTO table1 (day,client_code,client_name,team_ID,member,team_leader,leader_wage,total) VALUES (
  'thursday','c2','hariwini agrippa','T4','7','norris mamadou','400','1000');
INSERT INTO table1 (day,client_code,client_name,team_ID,member,team_leader,leader_wage,total) VALUES (
' ','c9','brutus sigihild','T2','5','elmer victorson','300','700');
INSERT INTO table1 (day,client_code,client_name,team_ID,member,team_leader,leader_wage,total) VALUES (
' ','c5','sigibert quirinus','T2','5','lmer victorson','300','700');
INSERT INTO table1 (day,client_code,client_name,team_ID,member,team_leader,leader_wage,total) VALUES (
' ','c6','artemisia hippolytos','T3','6','jaymes merrickson','350','850');


INSERT INTO table1 (day,client_code,client_name,team_ID,member,team_leader,leader_wage,total) VALUES (
  'friday','c8','felina diodotus','T2','5','elmer victorson','300','700');
INSERT INTO table1 (day,client_code,client_name,team_ID,member,team_leader,leader_wage,total) VALUES (
' ','c4','aeliana gebahard','T1','6','geoffrey glover','250','750');
INSERT INTO table1 (day,client_code,client_name,team_ID,member,team_leader,leader_wage,total) VALUES (
  ' ','c9','brutus sigihild','T1','6','elmer victorson','300','700');
INSERT INTO table1 (day,client_code,client_name,team_ID,member,team_leader,leader_wage,total) VALUES (
' ','c7','servius ambrosia','T4','7','norris mamadau','400','1000');
INSERT INTO table1 (day,client_code,client_name,team_ID,member,team_leader,leader_wage,total) VALUES (
  ' ','c2','hariwini agrippa','T3','6','jaymes mrrickson','350','850');



5.use a query select * from table1




3. Implement the designed database using MS SQL Server.<br>• Implement all tables and relationships using SQL.<br>Save all SQL statements for the creation of all tables and relationships.<br>4. Enter the data that is in the spreadsheet illustrated in Figure 1 to prove that your<br>database is appropriately designed.<br>• Add ALL of the records that are shown in the spreadsheet above accurately.<br>You may make assumptions regarding the data types of the attributes that<br>have not been displayed in the spreadsheet.<br>5. To prove that the database you have implemented will meet the needs of Golden<br>Gardens, you are required to write an SQL statement that will produce the report<br>shown in Figure 1 with all columns as they are illustrated.<br>Implement and save this SQL statement with the use of a single query.<br>• Do not make use of the WHERE clause within your SQL Statement.<br>6. Write an SQL query to calculate how much each client must pay every week.<br>

Extracted text: 3. Implement the designed database using MS SQL Server. • Implement all tables and relationships using SQL. Save all SQL statements for the creation of all tables and relationships. 4. Enter the data that is in the spreadsheet illustrated in Figure 1 to prove that your database is appropriately designed. • Add ALL of the records that are shown in the spreadsheet above accurately. You may make assumptions regarding the data types of the attributes that have not been displayed in the spreadsheet. 5. To prove that the database you have implemented will meet the needs of Golden Gardens, you are required to write an SQL statement that will produce the report shown in Figure 1 with all columns as they are illustrated. Implement and save this SQL statement with the use of a single query. • Do not make use of the WHERE clause within your SQL Statement. 6. Write an SQL query to calculate how much each client must pay every week.
JoziCleaners is local cleaning service that is looking to upgrade their current operations by<br>making use of a database to keep track of the teams, houses, clients and billings of each client<br>per/week.<br>Each house is cleaned by one or more teams. A team goes out to a particular house on a certain<br>day of the week. Each cleaning team has a team leader. Every cleaner eams R150 per day,<br>except the team leader who earns a unique amount.<br>The report that the JoziCleaners' manager produced in Microsoft Excel is illustrated as a<br>spreadsheet in Figure 1 below.<br>Day<br>Client<br>Client Name<br>Team Members<br>Team Leader<br>Leader<br>Total<br>Code<br>ID<br>Wage<br>Monday<br>Aeliana Gebahard<br>T3<br>6.<br>Jaymes Merrickson<br>R 350<br>R 850<br>C10<br>Alfher Dareia<br>T1<br>Geoffrey Glover<br>R 250<br>R 750<br>C8<br>Felina Diodotus<br>T2<br>Elmer Victorson<br>R 300<br>R 700<br>Brutus Sigihild<br>Sigibert Quirinus<br>Brutus Sigihild<br>C9<br>T4<br>Norris Mamadou<br>R 400<br>R1 000<br>Tuesday<br>CS<br>T3<br>Jaymes Merrickson<br>R 350<br>R 850<br>C9<br>T2<br>5<br>Elmer Victorson<br>R 300<br>R 700<br>Alfher Dareia<br>Duncan Gardyner<br>Geoffrey Glover<br>C10<br>T5<br>5<br>R450<br>R 850<br>C7<br>Servius Ambrosia<br>T1<br>6.<br>R 250<br>R750<br>C10<br>Alfher Dareia<br>T2<br>Elmer Victorson<br>R 300<br>R 700<br>Wednesd<br>ay<br>C10<br>Alfher Dareia<br>T3<br>6.<br>Jaymes Merrickson<br>R 350<br>R850<br>C1<br>Nikolaos Gallus<br>T4<br>7<br>Norris Mamadou<br>R 400<br>R1 000<br>C3<br>Amalia Prochoros<br>T2<br>5<br>Elmer Victorson<br>R 300<br>R 700<br>C8<br>Felina Diodotus<br>T3<br>Jaymes Merrickson R 350<br>R 850<br>Thursday C2<br>Hariwini Agrippa<br>T4<br>7<br>Norris Mamadou<br>R 400<br>R1 000<br>C9<br>Brutus Sigihild<br>T2<br>Elmer Victorson<br>R 300<br>R 700<br>CS<br>Sigibert Quirinus<br>T2<br>5<br>Elmer Victorson<br>R 300<br>R 700<br>C6<br>Artemisia Hippolytos T3<br>6.<br>Jaymes Merrickson<br>R 350<br>R850<br>Friday<br>C8<br>Felina Diodotus<br>T2<br>5<br>Elmer Victorson<br>R 300<br>R 700<br>Geoffrey Glover<br>Geoffrey Glover<br>C4<br>Aeliana Gebahard<br>T1<br>6.<br>R 250<br>R 750<br>C9<br>Brutus Sigihild<br>T1<br>R 250<br>R 750<br>Servius Ambrosia<br>T4<br>7<br>Norris Mamadou<br>R 400<br>R1 000<br>C2<br>Hariwini Agrippa<br>T3<br>6<br>Jaymes Merrickson<br>R 350<br>R850<br>Figure 1: JoziCleaners' report<br>

Extracted text: JoziCleaners is local cleaning service that is looking to upgrade their current operations by making use of a database to keep track of the teams, houses, clients and billings of each client per/week. Each house is cleaned by one or more teams. A team goes out to a particular house on a certain day of the week. Each cleaning team has a team leader. Every cleaner eams R150 per day, except the team leader who earns a unique amount. The report that the JoziCleaners' manager produced in Microsoft Excel is illustrated as a spreadsheet in Figure 1 below. Day Client Client Name Team Members Team Leader Leader Total Code ID Wage Monday Aeliana Gebahard T3 6. Jaymes Merrickson R 350 R 850 C10 Alfher Dareia T1 Geoffrey Glover R 250 R 750 C8 Felina Diodotus T2 Elmer Victorson R 300 R 700 Brutus Sigihild Sigibert Quirinus Brutus Sigihild C9 T4 Norris Mamadou R 400 R1 000 Tuesday CS T3 Jaymes Merrickson R 350 R 850 C9 T2 5 Elmer Victorson R 300 R 700 Alfher Dareia Duncan Gardyner Geoffrey Glover C10 T5 5 R450 R 850 C7 Servius Ambrosia T1 6. R 250 R750 C10 Alfher Dareia T2 Elmer Victorson R 300 R 700 Wednesd ay C10 Alfher Dareia T3 6. Jaymes Merrickson R 350 R850 C1 Nikolaos Gallus T4 7 Norris Mamadou R 400 R1 000 C3 Amalia Prochoros T2 5 Elmer Victorson R 300 R 700 C8 Felina Diodotus T3 Jaymes Merrickson R 350 R 850 Thursday C2 Hariwini Agrippa T4 7 Norris Mamadou R 400 R1 000 C9 Brutus Sigihild T2 Elmer Victorson R 300 R 700 CS Sigibert Quirinus T2 5 Elmer Victorson R 300 R 700 C6 Artemisia Hippolytos T3 6. Jaymes Merrickson R 350 R850 Friday C8 Felina Diodotus T2 5 Elmer Victorson R 300 R 700 Geoffrey Glover Geoffrey Glover C4 Aeliana Gebahard T1 6. R 250 R 750 C9 Brutus Sigihild T1 R 250 R 750 Servius Ambrosia T4 7 Norris Mamadou R 400 R1 000 C2 Hariwini Agrippa T3 6 Jaymes Merrickson R 350 R850 Figure 1: JoziCleaners' report
Jun 11, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here