Quotes help make search much faster. Example: "Practice Makes Perfect"

Friday, May 5, 2017

Codecademy SQL Find the greatest and least time value for cool down and cook time for each item in the table


--Greatest Time
SELECT id, MAX(cook_time, cool_down_time)
FROM baked_goods;

--Least Time
SELECT id, MIN(cook_time, cool_down_time)
FROM baked_goods;

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts