Home > Database > Mysql Tutorial > body text

How to Prevent Duplicate Values During Data Insertion in a \'Delegates\' Table?

Susan Sarandon
Release: 2024-11-01 08:08:30
Original
888 people have browsed it

How to Prevent Duplicate Values During Data Insertion in a

Preventing Duplicate Values During Data Insertion

Problem Statement:

Within a table named "Delegates," which contains unique member information as well as range fields "FromYr" and "ToYr," data insertion using user inputs risks the duplication of members for the same year.

Solution:

To address this issue and ensure data integrity, we can leverage the MERGE statement. The MERGE statement allows us to perform a conditional insertion, updating the record only if it does not already exist within the table.

Implementation:

<code class="sql">MERGE INTO Delegates D
USING (values(@MemNo, @FromYr,@ToYr)) X ([MemNo],[FromYr],[ToYr])
ON (insert unique key join)
WHEN NOT MATCHED BY TARGET THEN
INSERT ([MemNo],[FromYr],[ToYr]))
VALUES (X.[MemNo],X.[FromYr],X.[ToYr]);</code>
Copy after login

Explanation:

  • MERGE INTO: This statement specifies the target table ("Delegates") to be updated or inserted into.
  • USING: This clause defines the source data ("X") being compared against the target table.
  • ON: The join criteria specifies the conditions under which rows should be matched during the merge operation. In this case, the unique key join (e.g., MemberNo and year) is used to identify when a row already exists.
  • WHEN NOT MATCHED BY TARGET THEN: This statement defines the action to be taken if no matching row is found in the target table. In this case, an INSERT is performed to add the new row.

The above is the detailed content of How to Prevent Duplicate Values During Data Insertion in a \'Delegates\' Table?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!