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

Update a table with values from another 1

Status
Not open for further replies.

ice78991

Programmer
Nov 20, 2006
216
I have a table called bikes with the following columns
BikeID BikeName BikeSortOrder
1 Bike1 1
2 Bike2 2
3 Bike3 3

I wish to update the BikeSortOrder Column with values from another temporary table which is generated by a function createTable()

TempTable contains the columns
BikeID SortOrder
1 3
2 2
3 1

I am trying to come up with an update statement which updates the BikeSortOrder column in bikes with the SortOrder values generated within TempTable. IN the above example, the sort order of the bikes table is reversed.

I have tried using
UPDATE bikes
SET b.BikesSortOrder = tt.SortOrder
FROM bikes b
JOIN createTable() tt ON b.BikeID = (Select BikeID from tt)

but it is not correct
Any ideas?
 
Code:
UPDATE bikes SET b.BikesSortOrder = tt.SortOrder
FROM bikes b
INNER JOIN dbo.createTable() tt ON b.BikeID = tt.BikeID
not tested

Borislav Borissov
VFP9 SP1, SQL Server 2000/2005.
Microsoft MVP VFP
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top