doufuhao0566 2016-02-24 19:57 采纳率: 100%
浏览 75
已采纳

使用PDO插入的另一个表中的ID

I am creating a quiz based system which part of it includes 2 tables:

Answer_bank table:

+-------+---------+----------+
| ab_id | ab_name | ab_qb_id |
+-------+---------+----------+

and a Question_bank table:

+-------+-------------+
| qb_id | qb_question | 
+-------+-------------+

The aim is to allow someone to create a question and an answer, the answer will be stored within the answer bank table with the ab_qb_id equal to the qb_id. I don't want this in the same table as I will be making this more complex.

I try to use the following PDO/SQL to insert into both the tables.

//questions
$qb_id = $_POST['qb_id'];
$qb_question = $_POST['qb_question'];
$sql = "INSERT INTO questions_bank (`qb_id`, `qb_question`)
        VALUES (:qb_id, :qtn)";
$stmt = $db->prepare($sql);
$stmt->bindValue(":qb_id", $qb_id);
$stmt->bindValue(":qtn", $qb_question);
$stmt->execute();

//answers
$ab_name = $_POST['ab_name'];
$sql = "INSERT INTO answers_bank (`ab_name`, `ab_qb_id`) VALUES (:ab_name, :qb_id)";
$stmt = $db->prepare($sql);
$stmt->bindValue(':ab_name', $ab_name);
$stmt->bindValue(':qb_id', $qb_id);
$stmt->execute();

However the problem I have is the ab_qb_id in the answer_bank table always inserts 0 and not the same id as qb_id. Is this the incorrect way to do this? What's the best way for the answer table to include the qb_id ?... So that then the answer is related to a specific question. Thank you

  • 写回答

1条回答 默认 最新

  • doutan2228 2016-02-24 20:09
    关注

    I would personally get the ID of the row that was just inserted in the questions_bank table and then use that ID as the value you insert into the answers_bank.ab_qb_id column. Because you're using PDO, you can use this: $db->lastInsertId(). For example:

    $qb_id = $_POST['qb_id'];
    $qb_question = $_POST['qb_question'];
    $sql = "INSERT INTO questions_bank (`qb_id`, `qb_question`)
        VALUES (:qb_id, :qtn)";
    $stmt = $db->prepare($sql);
    $stmt->bindValue(":qb_id", $qb_id);
    $stmt->bindValue(":qtn", $qb_question);
    $stmt->execute();
    $inserted_id = $db->lastInsertId();
    
    //answers
    $ab_name = $_POST['ab_name'];
    $sql = "INSERT INTO answers_bank (`ab_name`, `ab_qb_id`) VALUES (:ab_name, :qb_id)";
    $stmt = $db->prepare($sql);
    $stmt->bindValue(':ab_name', $ab_name);
    $stmt->bindValue(':qb_id', $inserted_id); //Use the previously inserted ID
    $stmt->execute();
    

    Using this method will ensure that the questions_bank.qb_id and answers_bank.ab_qb_id are the same. To make sure that any interruptions (power surge, disk failure, etc.) don't have a chance to affect this, you can wrap these in a transaction. Then you can be sure that the values will always match.

    EDIT I forgot to add the try{}catch{} statement to the transaction:

    For example:

    try{
        $db->beginTransaction();
        //Your current queries
        $db->commit();
    }catch(Exception $e){
        $db->rollback();
        die($e->getMessage());
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵