Question: Is Not Null Values operator: Go to the webpage: https://www.w3schools.com/sql/trysql.asp?filename=trysql_is_nullLinks to an external site. Instead of trying to determine if any records in the Customers
- Is Not Null Values operator: Go to the webpage: https://www.w3schools.com/sql/trysql.asp?filename=trysql_is_nullLinks to an external site. Instead of trying to determine if any records in the Customers database are missing Address information, you want to check the Products database, then find out if any records are missing ProductID data [Hint: After the SELECT command, add the * symbol]. How many of the 77 records in the Products database are missing ProductID data?
- Min operator:Go to the webpage: https://www.w3schools.com/sql/trysql.asp?filename=trysql_is_not_nullLinks to an external site. Instead of determining the minimum price from the Products database, you want to determine the smallest order quantity from the OrderDetails database. What is the smallest order quantity from the OrderDetails database?
- Max operator: Go to the webpage: https://www.w3schools.com/sql/trysql.asp?filename=trysql_select_maxLinks to an external site. Instead of determining the maximum price from the Products database, you want to determine the maximum largest order quantity from the OrderDetails database. What is the largest order quantity from the OrderDetails database?
- Average operator: Go to the webpage: https://www.w3schools.com/sql/trysql.asp?filename=trysql_select_avg Links to an external site.Instead of finding the average price of products in the Product database, What is the average Quantity of all order in the OrderDetails database?
- Count operator: Go to the webpage: https://www.w3schools.com/sql/trysql.asp?filename=trysql_select_countLinks to an external site. Instead of counting the number of records with a ProductID from the Products database, count the number of records in the Customers database which list the city of London. Hint: change ProductID to CustomerName and add a WHERE(City)='London' statement at the end of the command.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
