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
Get step-by-step solutions from verified subject matter experts
