For the following questions, type in the following queries and select the correct result:
Time limit: 0
Quiz Summary
0 of 5 Questions completed
Questions:
Information
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
Results
Quiz complete. Results are being recorded.
Results
0 of 5 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
Categories
- Not categorized 0%
- 1
- 2
- 3
- 4
- 5
- Current
- Review / Skip
- Answered
- Correct
- Incorrect
-
Question 1 of 5
1. Question
CREATE TABLE heartrate_v7 ( pet_chip_id uuid, time timestamp, heart_rate int, pet_name text, PRIMARY KEY ((pet_chip_id, time), pet_name, heart_rate) ); SELECT * from heartrate_v7 WHERE pet_chip_id = 123e4567-e89b-12d3-a456-426655440b23 AND time ='2019-03-04 07:01:00';
CorrectIncorrect -
Question 2 of 5
2. Question
CREATE TABLE heartrate_v7 ( pet_chip_id uuid, time timestamp, heart_rate int, pet_name text, PRIMARY KEY ((pet_chip_id, time), pet_name, heart_rate) ); SELECT * from heartrate_v7 WHERE pet_chip_id = 123e4567-e89b-12d3-a456-426655440b23;
CorrectIncorrect -
Question 3 of 5
3. Question
CREATE TABLE heartrate_v7 ( pet_chip_id uuid, time timestamp, heart_rate int, pet_name text, PRIMARY KEY ((pet_chip_id, time), pet_name, heart_rate) ); SELECT * from heartrate_v7 WHERE pet_chip_id = 123e4567-e89b-12d3-a456-426655440b23 AND time ='2019-03-04 07:01:00' AND pet_name = 'Duke';
CorrectIncorrect -
Question 4 of 5
4. Question
CREATE TABLE heartrate_v7 ( pet_chip_id uuid, time timestamp, heart_rate int, pet_name text, PRIMARY KEY ((pet_chip_id, time), pet_name, heart_rate) ); SELECT * from heartrate_v7 WHERE pet_chip_id = 123e4567-e89b-12d3-a456-426655440b23 AND time ='2019-03-04 07:01:00' AND pet_name = 'Duke' AND heart_rate = 100;
CorrectIncorrect -
Question 5 of 5
5. Question
CREATE TABLE heartrate_v7 ( pet_chip_id uuid, time timestamp, heart_rate int, pet_name text, PRIMARY KEY ((pet_chip_id, time), pet_name, heart_rate) ); SELECT * from heartrate_v7 WHERE pet_chip_id = 123e4567-e89b-12d3-a456-426655440b23 AND time ='2019-03-04 07:01:00' AND heart_rate = 100;
CorrectIncorrect