Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SQL update question
Message
 
General information
Forum:
Microsoft SQL Server
Category:
Other
Environment versions
SQL Server:
SQL Server 2005
Miscellaneous
Thread ID:
01547388
Message ID:
01547396
Views:
19
>>Hi,
>>
>>I am struggling with creating the following SQL UPDATE:
>>
>>I have table PART_LIST with the PK field PART_PK (int) and unique field PART_NO (char).
>>Another table is PART_AUDIT with FK PART_PK and FK PART_NO.
>>I want to update PART_AUDIT column PART_PK with NULL for those records that do not have an entry of PART_NO in the PART_LIST. That is, before I can set the FK constraint on PART_PK I need to eliminate all the invalid keys.
>>
>>I would appreciate any suggestions or some sample code.
>>
>>This is my attempt at the code
>>
>>
>>update PART_AUDIT set PART_PK = null where not exists (select PART_PK from PART_LIST where
>> PART_LIST.PART_NO = PART_AUDIT.PART_NO)
>>
>
>Your code seems to be fine. Although I would name the field Part_FK in the Part_Audit as it's not a PK field there.

I usually assign the same name to the field if it relates to the PK field of another table. This way, it makes it visually easy to "connect." Are you saying that you name the FK (in a child) table differently than the, say, Unique field, in the parent table?

Thank you for confirming that my code will work (this was my main concern before executing it on the customer database).
"The creative process is nothing but a series of crises." Isaac Bashevis Singer
"My experience is that as soon as people are old enough to know better, they don't know anything at all." Oscar Wilde
"If a nation values anything more than freedom, it will lose its freedom; and the irony of it is that if it is comfort or money that it values more, it will lose that too." W.Somerset Maugham
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform