douqiang5163 2012-05-08 17:13
浏览 41
已采纳

表连接SQL / PHP(CRUD)

I have two tables like this:

[tblFacilityHrs] id uid title description
[tblFacilityHrsDateTimes] id owner_uid startEventDate endEventDate startTime endTime days recurrence finalDate

They are in a one-to-many relationship by way of UID: enter image description here

enter image description here

I want to join the tables so that I only get the ID value from tblFacilityHrsDateTimes (so that when I edit the tables the first table tblFacilityHrs gets edited by UID and tblFacilityHrsDateTimes gets edited by ID).

How can I join the tables so they can be edited in this manner?

Something like this:

<?php 
include('../config.php'); 
if (isset($_GET['uid']) ) { 
$uid = (int) $_GET['uid'];
$id = (int) $_GET['id'];  
if (isset($_POST['submitted'])) { 
foreach($_POST AS $key => $value) { $_POST[$key] = mysql_real_escape_string($value); } 

//Query for tblFacilityHrs
$sql = "`title` =  '{$_POST['title']}' ,  `description` =  '{$_POST['description']}'   WHERE `uid` = '$uid' "; 
mysql_query($sql) or die(mysql_error()); 

//Query for tblFacilityHrsDateTimes
$sql2 = "`startEventDate` =  '{$_POST['startEventDate']}' ,  `endEventDate` =  '{$_POST['endEventDate']}' ,  `startTime` =  '{$_POST['startTime']}',  `endTime` =  '{$_POST['endTime']}' ,  `days` =  '{$_POST['days']}' ,  `recurrence` =  '{$_POST['recurrence']} ,  `finalDate` =  '{$_POST['finalDate']}' WHERE `id` = '$id' "; 
mysql_query($sql2) or die(mysql_error()); 

echo (mysql_affected_rows()) ? "Edited row.<br />" : "Nothing changed. <br />"; 
echo "<a href='list.php'>Back</a>"; 
} 
$row = mysql_fetch_array (mysql_query("SELECT * FROM `tblFacilityHrs` WHERE `uid` = '$uid'"));
$row2 = mysql_fetch_array(mysql_query("SELECT * FROM `tblFacilityHrsDateTimes` WHERE `id` = '$id'"));
?>

In my head I imagine the tables joining like this (but it doesn't work):

$result = mysql_query("SELECT uid, title, description FROM tblFacilityHrs LEFT JOIN tblFacilityHrsDateTimes ON tblFacilityHrs.uid = tblFacilityHrsDateTimes.owner_uid ORDER BY tblFacilityHrs.description") or trigger_error(mysql_error());
  • 写回答

1条回答 默认 最新

  • dsimib1625 2012-05-08 17:45
    关注

    (Upgrading to an answer)

    You need to select the columns from tblFacilityHrsDateTimes into your resultset:

    SELECT      uid, title, description, tblFacilityHrsDateTimes.*
    FROM        tblFacilityHrs
      LEFT JOIN tblFacilityHrsDateTimes
             ON tblFacilityHrs.uid = tblFacilityHrsDateTimes.owner_uid
    ORDER BY    tblFacilityHrs.description
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 制裁名单20240508芯片厂商
  • ¥20 易康econgnition精度验证
  • ¥15 线程问题判断多次进入
  • ¥15 msix packaging tool打包问题
  • ¥28 微信小程序开发页面布局没问题,真机调试的时候页面布局就乱了
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接