I am creating a table within my database in Netbeans (Java DB).
I have created the database and I am connected to it.
This is my first and only table:
and the error I am receiving is this:
I am an amateur when it comes to databases and I have tried searching high and low to find what I'm doing wrong. I've tried:
Where am I going wrong?
User
is a reserved keyword in many databases. You should choose another name, or add quotation marks ("
) around the table name.