I know how to create tables using script in an ASP page except I cannot figure out the correct syntax to create a True/False table and set it to either true or false when I create it.
strSQL = "CREATE TABLE test (field yesno(1))"
strSQL = "CREATE TABLE test (field yesno(yes))"
Neither one works. Any ideas how to make the field?

Also here's another question I want to make a field name Date but it won't allow that because Date is a reserved word.
strSQL = "CREATE TABLE test (Date datetime)"
Anyway to be able to get it to create the field named Date?
