Link to home
Start Free TrialLog in
Avatar of get-ADuser -F ($_.Name -eq "Todd")
get-ADuser -F ($_.Name -eq "Todd")Flag for United States of America

asked on

Access 2010 Update querie SQL statement to add more fields.

Hello,  I am updating a "Computers" table from and "UpdateLap" table.  I found the SQL statement needed to update 1 field at a time, but could use some help to add more fields to the statement.  I currently am using:

UPDATE UpdateLap INNER JOIN Computers ON UpdateLap.Users = Computers.Users SET Computers.Memory = [UpdateLap].[Memory];


I would like to add fields from "UpdateLap" to the "Computers" table.  the fields would be like

Computers.Description = UpdateLap.Description.   And Computers.[Machine Type] = UpdateLap.[MA Type].  And so on.  I am not sure of the syntax to add more fields.  Any help would certainly help with time, instead of doing each one individually.  

Your help is very much appreciated.
ASKER CERTIFIED SOLUTION
Avatar of Rey Obrero (Capricorn1)
Rey Obrero (Capricorn1)
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of get-ADuser -F ($_.Name -eq "Todd")

ASKER

I knew I was damn close!!  Thanks much!