Module 4 Quiz - Coursera
Module 4 Quiz - Coursera
Menu
1. Which of the following are supported in SQL when dealing with strings? (Select all that apply.) 1 point
Graded Assignment
Module 4 Quiz
Concatenate
Trim
Upper
Lower Ready to review what you’ve learned before starting the assignment? I’m here to help.
Due Attempts
Oct 17, 12:59 PM +06 3 left (3 attempts every 8 hours) Try again
Submitted
Oct 3, 11:47 PM +06
3. What are the results of the following query? Like Dislike Report an issue 1 point
1 select * orders
2 where order_date = ‘2017-07-15’
3
Additional information:
Orders = integer
Order_date = datetime
You will get all the orders with an order date of 2017-07-15.
4. Case statements can only be used for which of the following statements? (Select all that apply.) 1 point
Update
Delete
Insert
Select
6. You are only allowed to have one condition in a case statement. True or false? 1 point
True
False
1 CREATE VIEW
2 customers AS
3 SELECT *
4 FROM customers
5 WHERE Name LIKE '%I'
6
1 CREATE VIEW AS
2 SELECT *
3 FROM customers
4 WHERE Name LIKE '%I'
5
8. Profiling data is helpful for which of the following? (Select all that apply.) 1 point
9. What is the most important step before beginning to write queries? 1 point
10. When debugging a query, what should you always remember to do first? 1 point