I'm fairly new to SQL (I learned it just yesterday). The DBMS application I am using is OpenOffice.org Base on Windows 10.
I created a table in my DBMS by the name of Employees, with several records. The Primary Key is EmployeeID (I'll attach a screenshot of the table for reference).
The problem is when I try to execute a code to delete the record with the EmployeeID "E001", I get an error message.
Code:
DELETE FROM "Employees"
WHERE "EmployeeID" = "E001";
This code seems simple enough to me. However, this is the error message I get:
1: Column not found: E001
I expected this to work, because I tried to use it on the w3schools.com online editor, and it worked (with a different database). I'll leave a link to it down below.
If this problem is exclusive to OOo Base, I can't do anything about it, since I need to use it for a school assignment.
Thanks in advance.