...

/

Practice Exercises on SQL

Practice Exercises on SQL

Test your understanding of this module with a few technical questions.

We'll cover the following...

Problem 1

Find the names and prices of all products that cost more than $50.

MySQL 8.0
-- Write your query here

Problem 2

Create a table named Reviews with the following columns and constraints:

  • ReviewID: INT, PRIMARY KEY, AUTO_INCREMENT

  • ProductID ...