Im looking for some help by a MSSQL 2000 expert.
I need to update dbo.prop_main with information from another table dbo.properties
Basically where prop_propertyID = Prop_ID in both tables
add the northings_COORD and eastings_COORD information from dbo.properties to the northings and eastings from dbo.prop_main
Can anyone help me construct this?
dbo.prop_main
prop_propertyID
northings
eastings
dbo.properties
Prop_ID
northings_COORD
eastings_COORD
					I need to update dbo.prop_main with information from another table dbo.properties
Basically where prop_propertyID = Prop_ID in both tables
add the northings_COORD and eastings_COORD information from dbo.properties to the northings and eastings from dbo.prop_main
Can anyone help me construct this?
dbo.prop_main
prop_propertyID
northings
eastings
dbo.properties
Prop_ID
northings_COORD
eastings_COORD
Comment