准备SQL语句并仅在不重复时输入
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了准备SQL语句并仅在不重复时输入相关的知识,希望对你有一定的参考价值。
我正在为我工作的小型企业创建销售订单表单。我有一个表单连接到数据库的下拉菜单,然后文本框,以便在需要时添加新数据。如果在之前的部分中填写了所有数据框,则可以显示另外四个部分。
链接到数据库的输入包括Company
,Customer
,Tool
和Part
然后有一个Description
进入工作要做。因此,一旦Tool
,Part
和Description
被填补,第二部分与另一个Tool
,Part
和Description
进入视野。我有一个名为Update.php的脚本,用于确定填充的字段以及输入数据库的内容。我一直试图做的是避免重复输入。因此,如果在第一部分输入了UpdateNewTool
,然后在第二部分再次放入该字段以将另一个Part
与其关联,则该数据将被插入两次。我怎样才能抛弃其中一个输入语句?
我的update.php代码:
<?php
$servername = "localhost";
$username = "user";
$password = "password";
$dbname = "Sales_Orders";
$UpdateCompany=$_POST['UpdateCompany'];
$UpdateNewCompany=$_POST['UpdateNewCompany'];
$UpdateCustomer=$_POST['UpdateCustomer'];
$UpdateNewCustomer=$_POST['UpdateNewCustomer'];
$UpdateTool=$_POST['UpdateTool'];
$UpdateTool2=$_POST['UpdateTool2'];
$UpdateTool3=$_POST['UpdateTool3'];
$UpdateTool4=$_POST['UpdateTool4'];
$UpdateNewTool=$_POST['UpdateNewTool'];
$UpdateNewTool2=$_POST['UpdateNewTool2'];
$UpdateNewTool3=$_POST['UpdateNewTool3'];
$UpdateNewTool4=$_POST['UpdateNewTool4'];
$UpdateNewPart=$_POST['UpdateNewPart'];
$UpdateNewPart2=$_POST['UpdateNewPart2'];
$UpdateNewPart3=$_POST['UpdateNewPart3'];
$UpdateNewPart4=$_POST['UpdateNewPart4'];
$conn = new mysqli($servername, $username, $password, $dbname);
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$data = [];
// BEGIN CONDITIONAL STATEMENTS
// New Company added by itself
if (!empty($UpdateNewCompany)) {
$data[] = [ '1', $UpdateNewCompany, $UpdateNewCompany, NULL ];
$data[] = [ '2', '', '', $UpdateNewCompany ];
$data[] = [ '3', '', '', $UpdateNewCompany ];
}
//Using the Company Drop-down box
if (!empty($UpdateCompany)) {
$UpdateNewCompany = $UpdateCompany; // If there is no new company inserted, $UpdateNewCompany becomes $UpdateCompany
if (!empty($UpdateNewCustomer)) {
$data[] = [ '2', $UpdateNewCustomer, $UpdateNewCustomer, $UpdateNewCompany ];
}
if (empty($UpdateTool)) { //If there is a new tool to add
if (!empty($UpdateNewTool)) {
$data[] = [ '3', $UpdateNewTool, $UpdateNewTool, $UpdateNewCompany ];
$data[] = [ '4', '', '', $UpdateNewTool ];
}
if (!empty($UpdateNewPart)) {
$data[] = [ '4', $UpdateNewPart, $UpdateNewPart, $UpdateNewTool ];
}
}
if (!empty($UpdateTool)) { // If there is no new tool to add
$UpdateNewTool = $UpdateTool;
if (!empty($UpdateNewPart)) {
$data[] = [ '4', $UpdateNewPart, $UpdateNewPart, $UpdateNewTool ];
}
}
//Part 2
if (empty($UpdateTool2)) { //If there is a new tool to add
if (!empty($UpdateNewTool2)) {
$data[] = [ '3', $UpdateNewTool2, $UpdateNewTool2, $UpdateNewCompany ];
$data[] = [ '4', '', '', $UpdateNewTool2 ];
}
if (!empty($UpdateNewPart2)) {
$data[] = [ '4', $UpdateNewPart2, $UpdateNewPart2, $UpdateNewTool2 ];
}
}
if (!empty($UpdateTool2)) { // If there is no new tool to add
$UpdateNewTool2 = $UpdateTool2;
if (!empty($UpdateNewPart2)) {
$data[] = [ '4', $UpdateNewPart2, $UpdateNewPart2, $UpdateNewTool2 ];
}
}
//Part 3
if (empty($UpdateTool3)) { //If there is a new tool to add
if (!empty($UpdateNewTool3)) {
$data[] = [ '3', $UpdateNewTool3, $UpdateNewTool3, $UpdateNewCompany ];
$data[] = [ '4', '', '', $UpdateNewTool3 ];
}
if (!empty($UpdateNewPart3)) {
$data[] = [ '4', $UpdateNewPart3, $UpdateNewPart3, $UpdateNewTool3 ];
}
}
if (!empty($UpdateTool3)) { // If there is no new tool to add
$UpdateNewTool3 = $UpdateTool3;
if (!empty($UpdateNewPart3)) {
$data[] = [ '4', $UpdateNewPart3, $UpdateNewPart3, $UpdateNewTool3 ];
}
}
//Part 4
if (empty($UpdateTool4)) { //If there is a new tool to add
if (!empty($UpdateNewTool4)) {
$data[] = [ '3', $UpdateNewTool4, $UpdateNewTool4, $UpdateNewCompany ];
$data[] = [ '4', '', '', $UpdateNewTool4 ];
}
if (!empty($UpdateNewPart4)) {
$data[] = [ '4', $UpdateNewPart4, $UpdateNewPart4, $UpdateNewTool4 ];
}
}
if (!empty($UpdateTool4)) { // If there is no new tool to add
$UpdateNewTool4 = $UpdateTool4;
if (!empty($UpdateNewPart4)) {
$data[] = [ '4', $UpdateNewPart4, $UpdateNewPart4, $UpdateNewTool4 ];
}
}
}
$insert = $conn->prepare("INSERT INTO Sales_Orders_dynlist_items (listid,name,value,parent) VALUES (?, ?, ?,?)");
if ( $insert === false ) {
echo "Error:".$conn->error;
die;
}
foreach ( $data as $item ){
if ( $insert->bind_param("ssss", ...$item) === false ) {
echo "Error:".$conn->error;
}
if ( $insert->execute() === false ) {
echo "Error:".$conn->error;
}
}
$conn->close();
?>
我很确定需要工作的地方是:
foreach ( $data as $item ){
if ( $insert->bind_param("ssss", ...$item) === false ) {
echo "Error:".$conn->error;
}
if ( $insert->execute() === false ) {
echo "Error:".$conn->error;
}
}
因此,例如,有时我们需要具有相同工具编号的不同零件。因此,如果用户输入新的作业号,例如“1234”和部分“abcd”,则说明已完成的操作。然后在下一节中,“1234”不在Dropbox中,因为它尚未添加到数据库中。因此,用户再次将“1234”放入工具中,但将“dcba”作为部件和另一个描述。提交后,['3', '1234', '1234', 'Whatever Company'];
将在数据库中有两个条目
感谢您的任何意见!
所以我决定采取不同的方法。我最终做的是设置一个javascript脚本,确定NewTool输入框是否为空,如果没有,则将该输入值作为选项添加到Tool2等框中。 javascript如下:
function addOpTool() {
if(document.getElementById('NewTool').value != '') {
var x = document.getElementById("Tool2");
var y = document.getElementById("Tool3");
var z = document.getElementById("Tool4");
var test = document.getElementById("NewTool");
var option = document.createElement("option");
var option2 = document.createElement("option");
var option3 = document.createElement("option");
option.text = test.value;
option2.text = test.value;
option3.text = test.value;
x.add(option);
y.add(option2);
z.add(option3);
}
}
function addOpTool2() {
if(document.getElementById('NewTool2').value != '') {
var y = document.getElementById("Tool3");
var z = document.getElementById("Tool4");
var test = document.getElementById("NewTool2");
var option2 = document.createElement("option");
var option3 = document.createElement("option");
option2.text = test.value;
option3.text = test.value;
y.add(option2);
z.add(option3);
}
}
function addOpTool3() {
if(document.getElementById('NewTool3').value != '') {
var z = document.getElementById("Tool4");
var test = document.getElementById("NewTool3");
var option3 = document.createElement("option");
option3.text = test.value;
z.add(option3);
}
}
我将这些函数添加到onchange
,NewTool
和NewTool2
的相应NewTool3
中。
例如,用户在NewTool
输入“1234”,在NewPart
输入“LH-Side”。然后在下面的表单部分中,现在在Tool2
下拉框中有一个“1234”选项,用户可以选择它然后在NewPart2
中输入“RH-Side”。
提交表单时,只有一个工具#“1234”的实例将被放入数据库,解决了我遇到的问题!
以上是关于准备SQL语句并仅在不重复时输入的主要内容,如果未能解决你的问题,请参考以下文章