Here is a "brain teaser". I'm on SQL Server 6.5 and trying to write a SQL Update query (or Add query) to add some Job Descriptions from one table to the other WITHOUT adding or overlaying the Job Descriptions on the receiving table that are already there (they are newer and I want to keep them).
I have the SQL server tblJobDescriptions (latest and greatest job descriptions)and the tblJobDescriptions2 as another table within the saem DB. The fields in both DB's have the same field names as:
JobName
JobDescription
CreateUser
CreateDate
Again - I don't want to overlay or add any tblJobDescriptions2 records (using JobName as the matching criteria) that are already there, I only want to add the records whose Jobnames that are not already there.
Thanks!
I have the SQL server tblJobDescriptions (latest and greatest job descriptions)and the tblJobDescriptions2 as another table within the saem DB. The fields in both DB's have the same field names as:
JobName
JobDescription
CreateUser
CreateDate
Again - I don't want to overlay or add any tblJobDescriptions2 records (using JobName as the matching criteria) that are already there, I only want to add the records whose Jobnames that are not already there.
Thanks!