You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
progate/exercise1.sql
Use comparison operators to get all rows from the
purchased_at
column that have a date earlier than or equal to
2018-11-01
(Including rows with the date 2018-11-01 itself)
progate/exercise2.sql
Use the LIKE operator to get rows for which the
name
column includes
pudding
progate/exercise3.sql
Use the NOT operator to get rows for which the
character_name
column is not
Ken the Ninja
progate/exercise4.sql
Use IS NULL to get rows for which the
price
column is NULL.
progate/exercise5.sql
Use the AND operator to get rows for which both of the following conditions are true:
1. The
category
column is
food
and
2. The
character_name
column is
Master Wooly
progate/exercise6.sql
Use ORDER BY and LIMIT to get the following result:
• All rows in descending order by the
price
column
• A maximum of 5 rows
0 commit comments