Question:Large Perimeters
Let's create a picture using this basic JOIN.
Write a query to select the shapes that have a perimeter greater than 400.
answer code:
SELECT *
FROM shapes
JOIN perimeters ON shapes.id = perimeters.shape_id
WHERE perimeters.perimeter > 400;
by the code giving error--> Try using ON id = shape_id
now please help me to solve this code.