IDENTITY

  • Thread starter Thread starter Man Utd
  • Start date Start date
M

Man Utd

CREATE TABLE [Categories]
([Categories ID] INTEGER IDENTITY,
[Title] TEXT(30),
[System] LOGICAL
)

I got a syntax error when try to save this query in Access 2003.
 
Man Utd said:
CREATE TABLE [Categories]
([Categories ID] INTEGER IDENTITY,
[Title] TEXT(30),
[System] LOGICAL
)
I got a syntax error when try to save this query in Access 2003.

Hello "Man Utd".
Try the following:
CREATE TABLE [Categories]
( [Categories ID] AUTOINCREMENT,
[Title] TEXT(30),
[System] LOGICAL)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top