Feb 10, 2005 #1 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
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
Feb 10, 2005 1 #2 r937 Technical User Jun 30, 2002 8,847 CA ALTER TABLE tblMatchedSellerDescriptions ADD COLUMN Match YESNO rudy | r937.com | Ask the Expert | Premium SQL Articles SQL for Database-Driven Web Sites (next course starts March 6 2005) Upvote 0 Downvote
ALTER TABLE tblMatchedSellerDescriptions ADD COLUMN Match YESNO rudy | r937.com | Ask the Expert | Premium SQL Articles SQL for Database-Driven Web Sites (next course starts March 6 2005)
Feb 10, 2005 #4 PHV MIS Nov 8, 2002 53,708 FR 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 Upvote 0 Downvote
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