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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Update Query Help?

Status
Not open for further replies.

Jimmy2128

Programmer
Feb 6, 2003
58
US
I have a table that contains Column A and B. I need to update all Null values in Column B with values from Column A.

Thanks

James
 
the query would be:

UPDATE Table1 SET Table1.[Column B] = [Table1]![Column A]
WHERE (((Table1.[Column B]) Is Null));

Hope this helps
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top