SyntaxFix
Write A Post
Hire A Developer
Questions
You can use the BIT field.
BIT
For adding a BIT column to an existing table, the SQL command would look like:
ALTER TABLE table_name ADD yes_no BIT
If you want to create a new table, you could do: CREATE TABLE table_name (yes_no BIT).
CREATE TABLE table_name (yes_no BIT)