Yes. Here is the basic ddl for the Northwind Employees table.
CODE
CREATE TABLE Employees77 (
EmployeeID AUTOINCREMENT,
LastName Text(20) NOT NULL ,
FirstName Text(10) NOT NULL ,
Title Text(30),
TitleOfCourtesy Text(25),
BirthDate Date,
HireDate Date,
Address Text(60),
City Text(15),
Region Text(15),
PostalCode Text(10),
Country Text(15),
HomePhone Text(24),
Extension Text(4),
Photo Text(255),
[color="red"] Notes Memo,[/color]
ReportsTo Long,
CONSTRAINT pkEmployees PRIMARY KEY (EmployeeID)
)