A family of Microsoft relational database management systems designed for ease of use.
Hi
As Danial mentioned - reserved words are a NO-NO in SQL.
try , ,
INSERT INTO Customers (FirstName, LastName, [Note]) VALUES ('Sam', 'Jones', 'Works Mondays Only');
the [ and ] denote that the contents are a field name.
Better yet - give all your fieldnames a prefix - then you can have unique non-reserved names.
Use a different prefix for each table
eg for tbl_CUSTOMERS use CUST_xxxxxxx
and for tbl_EMPLOYEES . . maybe EMP_xxxxxx
hope that helps
cheers
PaulG