Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ALTER TABLE Syntax - Add Yes/No Field 1

Status
Not open for further replies.

idbr

MIS
May 1, 2003
247
GB
Hi,

Hopefully a simple one for someone - does anyone know the correct description to use to create a yes/no field using ALTER TABLE?

e.g. ALTER TABLE tblMatchedSellerDescriptions ADD COLUMN Match DATA_TYPE_HERE

Thanks in advance, Iain
 
Or:
ALTER TABLE tblMatchedSellerDescriptions ADD COLUMN Match BIT;
Or:
ALTER TABLE tblMatchedSellerDescriptions ADD COLUMN Match BOOLEAN;

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top