This script creates a table tblCategory with ID is primary key and auto number, CategoryName VARCHAR(255)
CREATE TABLE [tblCategory] (
[ID] AUTOINCREMENT,
[CategoryName] TEXT(255),
[ParentID] LONG,
[GroupID] LONG,
CONSTRAINT [PrimaryKey] PRIMARY KEY ([ID])
);
Saturday, September 10, 2011
CREATE TABLE in Access Database
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment