Error lesson 4.2 in SQL Course
Appears an error when executing the select statement of lesson 4.2 of SQL Course. Despite writing the requested columns in the statement, appears an error indicating that the column does not exist. This is the description: When buying food, it is important to make sure it is fresh and not expired. You are given the following 'Products' list: columns are: productname, price, productiondate, expirationdate Write a query to select the ProductName, ProductionDate and ExpirationDate. Use the SELECT statement and separate the required columns by commas. The query I have written: SELECT productname, productiondate, expirationdate; Executing this query I get the following error message: ERROR: column "productname" does not exist. I do not know if this a code error or there is something wrong in the website. Appreciate your help!