I'm trying to give my INT in one of my create statements a range of possible values, i.e.
CREATE TABLE Site( **SiteID INT (1,4),** UserID INT UNSIGNED Not Null, Name varchar(128) Unique Not Null, Foreign Key (UserID) References Users(UserID), Primary key (SiteID) );
I forget the syntax that you use for ranges, and I'm pretty sure I'm erring when I'm attempting to use it as is.