如何处理多个表并且不会获取重复的数据? (MySQL的/ PDO)
我正在尝试创建一个可容纳大约1000支枪支的枪支网站。 这不是很多数据库条目,但我试图尽可能保持数据库的轻量级。 我创建了五个表格,记住了标准化,并且我在将数据放入一个查询中的所有五个表格时遇到了问题。 我的数据库结构如下:
+-----------------+ +-----------------+ +-----------------+ +-----------------+
| make + | model | | image | | type |
+-----------------+ +-----------------+ +-----------------+ +-----------------+
| PK | make_id | | PK | model_id | | PK | model_id | | PK | type_id |
+-----------------+ +-----------------+ +-----------------+ +-----------------+
| | make_name | | | make_id | | | image_path | | | type_name |
+-----------------+ +-----------------+ +-----------------+ +-----------------+
| | type_id |
+-----------------+ +------------------+
| | caliber_id | | caliber |
+-----------------+ +------------------+
| | model_name | | PK | caliber_id |
+-----------------+ +------------------+
| | cost | | | caliber_name|
+-----------------+ +------------------+
| | description|
+-----------------+
这可能是过分规范化的,但这是我正在处理的内容;)
让我显示代码:
形成
<form action="post" method="addProduct.php" enctype="multipart/form-data">
make: <input type="text" name="make" />
model: <input type="text" name="model" />
type: <input type="text" name="type" />
caliber: <input type="text" name="caliber" />
cost: <input type="text" name="cost" />
desc.: <input type="text" name="description" />
Image: <input type="file" name="image" id="image" />
<input type="submit" name="submit" value="Add Item" />
</form>
addProduct.php
$make = $_POST['make'];
$model = $_POST['model'];
$type = $_POST['type'];
$caliber = $_POST['caliber'];
$cost = $_POST['cost'];
$description = $_POST['description'];
$image = basename($_FILES['image']['name']);
$uploadfile = 'pictures/temp/'.$image;
if(move_uploaded_file($_FILES['image']['tmp_name'],$uploadfile))
{
$makeSQL = "INSERT INTO make (make_id,make_name) VALUES ('',:make_name)";
$typeSQL = "INSERT INTO type (type_id,type_name) VALUES ('',:type_name)";
$modelSQL = "INSERT INTO model (model_id,make_id,type_id,caliber,model_name,cost,description,) VALUES ('',:make_id,:type_id,:caliber,:model_name,:cost,:description)";
$imageSQL = "INSERT INTO image (model_id,image_path) VALUES (:model_id,:image_path)";
try
{
/* db Connector */
$pdo = new PDO("mysql:host=localhost;dbname=gun",'root','');
/* insert make information */
$make = $pdo->prepare($makeSQL);
$make->bindParam(':make_name',$make);
$make->execute();
$make->closeCursor();
$makeLastId = $pdo->lastInsertId();
/* insert type information */
$type = $pdo->prepare($typeSQL);
$type->bindParam(':type_name',$type);
$type->execute();
$type->closeCursor();
$typeLastId = $pdo->lastInsertId();
/* insert model information */
$model = $pdo->prepare($modelSQL);
$model->bindParam(':make_id',$makeLastId);
$model->bindParam(':type_id',$typeLastId);
$model->bindParam(':caliber',$caliber);
$model->bindParam(':model_name',$model);
$model->bindParam(':cost',$cost);
$model->bindParam(':description',$description);
$model->execute();
$model->closeCursor();
$modelLastId = $pdo->lastInsertId();
/* insert image information */
$image = $pdo->prepare($imageSQL);
$image->bindParam(':model_id',$modelLastId);
$image->bindParam(':image_path',$image);
$image->execute();
$image->closeCursor();
print(ucwords($manu));
}
catch(PDOexception $e)
{
$error_message = $e->getMessage();
print("<p>Database Error: $error_message</p>");
exit();
}
}
else
{
print('Error : could not add item to database');
}
所以当我使用上面的代码添加一个项目时,一切正常,但是当我使用相同的制造商名称添加另一个项目时,它将复制它。 我只是想让它意识到它已经存在并且不会重复它。
我正在考虑进行一些检查,看看数据是否已经存在,如果没有,那么不要输入数据,而是获取id并在需要的地方输入。
我想到的另一件事是为最有可能被复制的数据创建一个下拉列表并将该值指定为id。 但是,我的简单头脑无法弄清楚最好的方法:(希望一切都有道理,如果没有的话,我会尽力阐述。
如果你有一些只有极限数据的领域(口径肯定是一个,而且我怀疑manfacturer也可以工作),你可以预先填充数据库中的表格,并将它变成查找字段。
在您的HTML表单上,而不是有文本输入字段,您可以打印出一个选择框。 select的值是查找字段中的ID - 您不必担心向数据库中的查找字段添加任何内容。
过去我不得不这样做时,我写了一个函数来完成数据插入; 它会检查值是否在表中。 如果是,则返回该字段的索引; 否则,它将其添加为新条目,并返回新条目的ID。 这不是最优雅的解决方案,但它运作良好。
您需要确定什么是独特的(不重复的)品牌,型号,类型和口径。
然后,您需要为这些强制实现唯一性的表创建唯一索引。 请参阅http://dev.mysql.com/doc/refman/5.0/en/create-index.html
例如,您可以使用make_id,model_name和caliber_id来唯一标识一个模型。 你需要
CREATE UNIQUE INDEX UNIQUEMODEL ON MODEL(make_id, caliber_id, model_name)
设置您的独特索引。 请注意,主键索引可以是唯一索引,但您也可以具有其他唯一索引。
然后您可以使用INSERT ON DUPLICATE KEY UPDATE
来填充表格。 请参阅:http://dev.mysql.com/doc/refman/5.5/en/insert-on-duplicate.html
对于这一切都正常工作,你必须确保适当的type
, caliber
,并make
你尝试填充每个前存在的行model
的一行:你需要从那些最初的三个表的ID填充第四。
上一篇: How to work with multiple tables and not get duplicate data? (MySQL/PDO)
下一篇: How to connect two points without crossing another path?