I'm with dhookom on this
And i'd add DO NOT USE # or any other 'fancy' characters in field names.
# is a Date value delimiter in Access any people might think you're flagging this as a Date field.
Other people use # as some other data type that is not universally defined - so avoid it to save confusion.
Also see FAQ faq700-2190 about space characters.
This job is exactly what Option Group controls are for, and the principle of the Enum data type ( even though I'd just use a simple Byte in this case. )
CREATE TABLE Speed
(
SpeedId Text(50) Primary Key NOT NULL,
SpeedVal Number(Byte),
);
Where SpeedVal Enums to 1 = Slow, 2 = Fast, 3 = Faster, 4 = Fastest
Your Create Table layout is very MySQL speak format.
Are you sure you're in the right Forum ?
'ope-that-'elps.
G LS
spsinkNOJUNK@yahoo.co.uk
Remove the NOJUNK to use.