alter column statement for boolen

G

Guest

I am trying to create a statement that will create a boolean column, using
the alter table command/alter column. What data type is used for boolean
values? Thank you.
 
D

Dirk Goldgar

Jeffrey Howard said:
I am trying to create a statement that will create a boolean column,
using the alter table command/alter column. What data type is used
for boolean values? Thank you.

In Jet SQL? BOOLEAN, BIT, LOGICAL, YESNO -- any of these should work.
 
M

Marshall Barton

Jeffrey said:
I am trying to create a statement that will create a boolean column, using
the alter table command/alter column. What data type is used for boolean
values?


A97 Help tells me you can use any of these synonyms:
BOOLEAN, BIT, LOGICAL, YESNO
but if one doesn't work, try another.

I generally use YesNo or Boolean.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top