<i id='Or0Kv'><tr id='Or0Kv'><dt id='Or0Kv'><q id='Or0Kv'><span id='Or0Kv'><b id='Or0Kv'><form id='Or0Kv'><ins id='Or0Kv'></ins><ul id='Or0Kv'></ul><sub id='Or0Kv'></sub></form><legend id='Or0Kv'></legend><bdo id='Or0Kv'><pre id='Or0Kv'><center id='Or0Kv'></center></pre></bdo></b><th id='Or0Kv'></th></span></q></dt></tr></i><div id='Or0Kv'><tfoot id='Or0Kv'></tfoot><dl id='Or0Kv'><fieldset id='Or0Kv'></fieldset></dl></div>
      <bdo id='Or0Kv'></bdo><ul id='Or0Kv'></ul>

    <tfoot id='Or0Kv'></tfoot>

    1. <legend id='Or0Kv'><style id='Or0Kv'><dir id='Or0Kv'><q id='Or0Kv'></q></dir></style></legend>
    2. <small id='Or0Kv'></small><noframes id='Or0Kv'>

    3. 防止重复的 SQL 条目

      Prevent Duplicate SQL entries(防止重复的 SQL 条目)
    4. <i id='QYAlM'><tr id='QYAlM'><dt id='QYAlM'><q id='QYAlM'><span id='QYAlM'><b id='QYAlM'><form id='QYAlM'><ins id='QYAlM'></ins><ul id='QYAlM'></ul><sub id='QYAlM'></sub></form><legend id='QYAlM'></legend><bdo id='QYAlM'><pre id='QYAlM'><center id='QYAlM'></center></pre></bdo></b><th id='QYAlM'></th></span></q></dt></tr></i><div id='QYAlM'><tfoot id='QYAlM'></tfoot><dl id='QYAlM'><fieldset id='QYAlM'></fieldset></dl></div>
      <tfoot id='QYAlM'></tfoot>
      <legend id='QYAlM'><style id='QYAlM'><dir id='QYAlM'><q id='QYAlM'></q></dir></style></legend>

                <tbody id='QYAlM'></tbody>

            • <small id='QYAlM'></small><noframes id='QYAlM'>

                <bdo id='QYAlM'></bdo><ul id='QYAlM'></ul>
                本文介绍了防止重复的 SQL 条目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我希望能够防止重复的 SQL 文本字段行.也就是说,如果第 1 行的名称字段已定义为John Smith",我不希望它能够添加另一个John Smith"(与该名称一样常见).

                I want to be able to prevent duplicate SQL text field rows. That is, if row 1 has the name field already defined as "John Smith", I don't want it to be able to add another "John Smith" (as common as that name might be).

                我尝试在插入时检查它是否存在,但问题是,如果您同时打开两个浏览器窗口并同时单击提交,它们都会检查,检查会清除,然后他们'如果它足够靠近,我都会插入.

                I tried checking if it existed at time of insertion, but the problem is, if you open up two browser windows at the same time and click submit simultaneously, they'll both check, the check will clear, and then they'll both insert if it's close enough together.

                哦,这是在 PHP 网站上.

                Oh, and this is on a PHP site.

                谢谢!

                推荐答案

                CREATE UNIQUE INDEX idxname ON tablename (fieldname);
                

                添加此索引将确保 fieldname 字段的重复条目不会记录到 tablename 表中.

                Adding this index will ensure that no duplicate entries for fieldname field will be recorded into tablename table.

                第二个客户端会出现 MySQL 错误.您应该在您的 PHP 代码中处理这个问题,然后再次提交表单(而不仅仅是显示错误消息).

                You will get a MySQL error with the second client. You should handle this in your PHP code, and put up the form again (instead of just displaying the error message).

                另一种可能性(对于更复杂的情况)是 LOCK 功能.如果您在检查之前锁定表,然后插入记录,则并发操作(在第二个浏览器窗口中)将被延迟,直到您释放锁定.然后记录将被保存,因此第二个 PHP 脚本将看到它并处理该位置.

                An other possibility (for more complex sitations) is the LOCK functionality. If you lock the table before checking and then you insert your record a concurrent operation (in the second browser window) will be delayed until you release the locks. Then the record will be already saved, so the second PHP script will see it and handle the sitation.

                这篇关于防止重复的 SQL 条目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                PHP Upload File Validation(PHP 上传文件验证)
                PHP Error - Uploading a file(PHP 错误 - 上传文件)
                How can I write tests for file upload in PHP?(如何在 PHP 中编写文件上传测试?)
                php resizing image on upload rotates the image when i don#39;t want it to(php在上传时调整图像大小会在我不想要它时旋转图像)
                How to send additional data using PLupload?(如何使用 PLupload 发送附加数据?)
                change button text in js/ajax after mp4 =gt;mp3 conversion in php(在 php 中的 mp4 =gt;mp3 转换后更改 js/ajax 中的按钮文本)
                <i id='cHjBk'><tr id='cHjBk'><dt id='cHjBk'><q id='cHjBk'><span id='cHjBk'><b id='cHjBk'><form id='cHjBk'><ins id='cHjBk'></ins><ul id='cHjBk'></ul><sub id='cHjBk'></sub></form><legend id='cHjBk'></legend><bdo id='cHjBk'><pre id='cHjBk'><center id='cHjBk'></center></pre></bdo></b><th id='cHjBk'></th></span></q></dt></tr></i><div id='cHjBk'><tfoot id='cHjBk'></tfoot><dl id='cHjBk'><fieldset id='cHjBk'></fieldset></dl></div>
                  <tbody id='cHjBk'></tbody>
                  <legend id='cHjBk'><style id='cHjBk'><dir id='cHjBk'><q id='cHjBk'></q></dir></style></legend>
                  • <small id='cHjBk'></small><noframes id='cHjBk'>

                    1. <tfoot id='cHjBk'></tfoot>
                        <bdo id='cHjBk'></bdo><ul id='cHjBk'></ul>