gpt4 book ai didi

php - Mysql - PHP - 创建触发器或事务? - 需要澄清

转载 作者:行者123 更新时间:2023-11-29 08:39:54 24 4
gpt4 key购买 nike

请先阅读编辑2,谢谢!

我一直在开发一个名为“inoffice.php”的页面,该页面显示学生等待被看到和当前被看到的页面 View 如下:

Page view of inoffice.php

现在我几乎已经使用了上面的同一张表来获取第二个表,但是我添加了一个左连接,以便显示与学生一起工作的辅导员(在本例中为 Dawne)以及学生被接受的时间由辅导员。

该项目的这一部分非常困难,但我还是度过了。现在对我来说最困难的部分是(这也是我的问题):

1) 我怎样才能使“被看到”表(正在等待的第二个表)为空,除非辅导员(或工作人员)单击“开始 session ”按钮(不是 php session )而是学生和辅导员之间真实的现实生活中的会面)

2)如何才能使辅导员(工作人员)单击“开始 session ”按钮后第一张 table (等待)丢失条目。

我的数据库架构如下:

  1. 用户 - 持有员工凭证
  2. Waiting - 包含 ID(PK)、anum(学生 ID 号)、第一个、最后一个、为什么、评论、登录时间
  3. 辅导员 - 包含 ID(等待在加入中使用的 PK 和 FK)、辅导员姓名、辅导员开始时间
  4. 评论 - ID(等待中的 PK 和 FK)、评论(辅导员评论的 varchar 50 左右)
  5. 完成 - ID(等待中的 PK 和 FK),以及辅导员完成与学生交谈的时间戳

因此,希望根据我提供的信息,有人可以详细说明我应该如何/是否使用触发器或事务来完成此操作。或者如果它是一个 PHP“东西”——因为缺乏更好的词语。

谢谢你,愤怒

编辑 2:删除旧的不起作用的代码,用新代码更新帖子并删除过时的屏幕截图!包括更新的一个! :

<php
require('core/init.php');

if(!isset($_SESSION['LoggedIn'])){
die("You must <a href='index.php'><bold>login</bold></a> before you can see that page!");
}

//Begin the select statements
try
{
$query = $dbh->prepare("SELECT * FROM waiting WHERE counselorname IS NULL ");
$query->bindParam(':null', $null);
$query->execute();
$result = $query->fetchall();
}
catch (PDOException $e) {
error_log($e->getMessage());
die($e->getMessage());
}


echo "Return to <a href='login_success.php'><bold>Home Page</bold></a>";

echo "<br />";
echo "Waiting";

echo
"<table border='2'>
<tr>
<th>ID</th>
<th>A Number</th>
<th>First Name</th>
<th>Last Name</th>
<th>Why</th>
<th>Comments</th>
<th>Signintime</th>
<th>Staff Member</th>
<th>Click if ready!</th>
</tr>"
;

foreach($result as $row)
{
echo "<tr>";
echo "<td>" . $row['id'] . "</td>";
echo "<td><a href=Student.php?student=" . $row['anum'] . ">" .$row['anum'] . " </a></td>";
echo "<td>" . $row['first'] . "</td>";
echo "<td>" . $row['last'] . "</td>";
echo "<td>" . $row['why'] . "</td>";
echo "<td>" . $row['comments'] . "</td>";
echo "<td>" . $row['signintime'] . "</td>";
echo "
<td> <form action='counselor.php?id=" . $row['id'] . "' method='post' target='_new'>
<select name='namedrop'>
<option value=''>Counselor Name</option>
<option value='Admin-John'>Admin - John</option>
<option value='Admin-Christine'>Admin - Christine</option>
<option value='Admin-Dawne'>Admin - Dawne</option>
<option value='Counselor-Cherie'>Counselor - Cherie</option>
<option value='Counselor-Tootie'>Counselor - Tootie</option>
<option value='Counselor-Debbie'>Counselor - Debbi</option>
<option value='FrontDesk-Delores'>Front Desk - Delores</option>
<option value='FrontDesk-Kiana'>Front Desk - Kiana</option>
</select>
</td>

<td> <input type='submit' name='submit' value='Start Session'></td>
</form> </td>";
}

echo "</tr>";
echo "</table>";

echo "<br />";
echo "<br />";


try
{
$query2 = $dbh->prepare("SELECT * FROM waiting WHERE counselorname is NOT NULL");
$query2->execute();
$result2 = $query2->fetchall();
}
catch (PDOException $e) {
error_log($e->getMessage());
die($e->getMessage());
}


echo "Return to <a href='login_success.php'><bold>Home Page</bold></a>";

echo "<br />";
echo "Being seen";

echo
"<table border='2'>
<tr>
<th>ID</th>
<th>A Number</th>
<th>First Name</th>
<th>Last Name</th>
<th>Why</th>
<th>Comments</th>
<th>Signintime</th>
<th>Staff Member</th>
<th>Counselor Start Time</th>
</tr>"
;

foreach($result2 as $row2)
{
echo "<tr>";
echo "<td>" . $row2['id'] . "</td>";
echo "<td><a href=Student.php?student=" . $row2['anum'] . ">" .$row2['anum'] . " </a></td>";
echo "<td>" . $row2['first'] . "</td>";
echo "<td>" . $row2['last'] . "</td>";
echo "<td>" . $row2['why'] . "</td>";
echo "<td>" . $row2['comments'] . "</td>";
echo "<td>" . $row2['signintime'] . "</td>";
echo "<td>" . $row2['counselorname'] . "</td>";
echo "<td>" . $row2['counselor_time'] . "</td>";
}


?>

New preview

最佳答案

两个渲染的 HTML 表可能应该有一个 SQL 表(具有任何规范化的依赖关系)。

也就是说,使显示的 HTML 表格代表相同信息的不同 View

现在,发布的架构大部分允许这样做,但有一个问题使其无法实现:

辅导员表包含的信息(开始时间)不是功能依赖性 - 也就是说,它与“成为辅导员”无关!这会导致两个问题:

  1. 一名辅导员只能有一个开始时间并且;
  2. 不可能表示所有事件的开始时间

解决方法是从 Counselors 表中移动 start time 列,并将其作为 start time 放入 Schedules 表中(类似于 finish code> time) 取决于特定的调度。

<小时/>

1) How can I make it so that the Being Seen table (the second table under waiting) is empty UNLESS a counselor (or a staff member) clicks on the button "Start Session" (not a php session but a actual real life meeting between the student and the counselor)

查询(查看信息):

select * from Schedules
where startTime not null -- only show started events

2) How can I make it so that the first table (waiting) loses an entry once the counselor (staff member) clicks on the "Start Session" button.

查询(查看信息):

select * from Schedules
where startTime is null -- it does not 'lose' item, but it is not shown

否则,如果坚持使用单独的表,您将不得不进行簿记:每次都根据需要手动插入/删除,或者设置一个触发器来执行相同的操作。这会增加额外的工作,并且可能不需要。

关于php - Mysql - PHP - 创建触发器或事务? - 需要澄清,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14127384/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com