Question: Choose the script that will create a NEW table with data from the existing developer table named TotalByCountry which has the total bonus per CountryOfBirth

Choose the script that will create a NEW table with data from the existing developer table named TotalByCountry which has the total bonus per CountryOfBirth for all developers. (choose one) (10 pts)

Create table TotalByCountry from developer select CountryOfBirth

Alter table Developer into TotalByCountry Total(Bonus) group by CountryofBirth

Select CountryOfBirth, sum(BonusAmount) into TotalByCountry from developer group by CountryOfBirth

Select developer into sum(BonusAmount) having CountryOfBirth

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!