Make Table Query ( add column and set the value to zero)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a make table query that I would like to add an additional column and
set the value of that column to zero

This what I have thus far
SELECT BASE.* INTO NO_LONGER_IN_BULK
FROM BASE LEFT JOIN [Upload Updated] ON BASE.[ITEM/SKU]=[Upload
Updated].[ITEM/SKU]
WHERE ((([Upload Updated].[ITEM/SKU]) Is Null));

The column I would like to add is Publish and set the value to zero

Thank you in advance
 
I would try the following,

SELECT Base.* , 0 as Publish
INTO NO_LONGER_IN_BULK
FROM Base LEFT JOIN ...


--
John Spencer
Access MVP 2002-2005, 2007
Center for Health Program Development and Management
University of Maryland Baltimore County
..
 
Back
Top