Yes, in a sense you are right but here is where I am having issues.
Contact table is a lookup table to another table called Calls.
In other words, Calls table is dependent upon Contacts table for contact name.
So, if we have on Calls table the following:
ContactID,
Call_Date, etc
Now, any time we need to create a new call Record, we would search the Contact Dropdownlist to see if the Caller already exists there. If it does, we pull it and its id is stored on Calls table.
There are times when the wrong Contact name is pulled.
For instance, if We mistakenly pull Contact by the name Joe Blow with ContactID 123, and it turns out that Joe Blow is wrong. It is actually John Doe with contact Id 456, we will now need to update the Calls table.
My question then is how do we update Calls table giving that this is pullded from dropdownlist control and the dropdown is already a computed column?
Your assistance is appreciated and sorry for long, boring explanation.
Main Topics
Browse All Topics





by: samtran0331Posted on 2007-12-05 at 10:59:45ID: 20413933
There's really no need to have a column named "FullName", it can be a computed column.
When you need a full name, you can:
SELECT FirstName, LastName, FirstName+' '+LastName AS FullName FROM Contacts