August 3, 2007 at 4:31 pm
I have the following update statement that joins to a view, vwqPostalCode. I am unable to update the LocationAddress table. The columns shown are essentially the whole table. I need the view to limit records to just those for postal codes. How can I make this updateable? It's not a lock problem.
SELECT la.LocationAddressID, la.AddressID, la.LocationID
FROM dbo.LocationAddress la
INNER JOIN vwqPostalCode v ON v.LocationID=la.LocationID
WHERE la.AddressID = 32064
August 3, 2007 at 6:30 pm
I'm confused... you post a SELECT and call it an UPDATE (I have the following update statement that joins to a view). You want to limit to "just those for postal codes" but you have no apparent postal code information (column) in the code.
I'm thinking you're gonna need to cough up just a bit more info to get help on this one...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 4, 2007 at 3:53 am
sorry for the unclear question. I've got it worke out. Thanks so much.
August 4, 2007 at 8:54 am
Care to share the solution?
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply