Complete SQL Mastery/ Retrieving Data From Multiple Tables/ Inner Joins - Error Code: 1054

Error Code: 1054. Unknown column ‘oi.unit_prize’ in ‘field list’

I got this Error Code with the following code:

SELECT oi.product_id, name, oi.quantity, oi.unit_prize
FROM order_items AS oi
JOIN products AS p
ON p.product_id = oi.product_id

Thank you for your help.

The name of the column is unit_price not unit_prize.