在我的Joomla组件中,我有两个表:
表1:#__ com_units
Id | Building | Floor |unit_number | posx | posy | mood
-------------------------------------------------------
1 | 01 | 01 | 001A | 100 | 200 |Rented
2 | 01 | 01 | 002A | 101 | 202 |Available
3 | 01 | 01 | 003A | 102 | 204 |Available
4 | 01 | 01 | 004A | 103 | 206 |Available
5 | 01 | 01 | 005A | 104 | 208 |Rented
6 | 01 | 01 | 006A | 103 | 206 |Available
7 | 01 | 01 | 007A | 104 | 208 |Rented
8 | 01 | 01 | 008A | 103 | 206 |Rented
9 | 01 | 01 | 009A | 104 | 208 |Rented
10 | 01 | 01 | 010A | 103 | 206 |Available
表1:#__ com_reservations
Id | Building | Floor |unit | confirmation
--------------------------------------------------
1 | 01 | 01 | 002A | NO
2 | 01 | 01 | 003A | YES
3 | 01 | 01 | 004A | NO
4 | 01 | 01 | 006A | NO
5 | 01 | 01 | 010A | YES
我希望获得查询以将单位显示为“情绪=已租用”和“确认=是”但按钮无效的按钮:
<?php
$db = JFactory::getDbo();
$query = $db->getQuery(true);
$jinput = JFactory::getApplication()->input;
$query->select($db->quoteName(array(
'b.unit_number',
'a.confirmation',
'b.posx',
'b.id',
'a.unit',
'b.posy',
'b.mood'
)));
$query->from($db->quoteName('#__com_reservations','a' ))
->join('INNER', $db->quoteName('#__com_units', 'b') . ' ON (' . $db->quoteName('b.unit_number') . ' = ' . $db->quoteName('a.unit') . ')');
$query->where($db->quoteName('b.floor')." = ".$db->quoteName('a.floor'),'AND')
->where($db->quoteName('b.building')." = ".$db->quoteName('a.building'),'AND')
->where($db->quoteName('a.confirmation')." = ".$db->quote('YES'));
$db->setQuery($query);
$results = $db->loadObjectList();
foreach ($results as $result) {
echo '<button class=" ' . $result->mood . ' ' . $result->posx . ' ' . $result->posy . '" value=' . $result->id . ' disabled> ' . $result->Unit_number . '</button>';
}
?>
答案 0 :(得分:2)
我不知道Joomla,但是从您的代码中看起来您正试图使用#__com_units
和#__com_reservations
#__com_units.unit_number
加入#__com_reservations.id
表。这两个字段都有不同的数据,因此您无法正确连接表。表格应使用单位字段#__com_units.unit_number = #__com_reservations.unit_number
答案 1 :(得分:2)
SELECT * FROM `#__com_reservations` A
JOIN `#__com_units` B
ON A.unit = B.unit_number
AND A.building = B.building
AND A.floor = B.floor
WHERE A.confirmation = 'Yes'
AND B.mood = 'Available'
即使我不熟悉joomla,希望这个mysql查询会有所帮助。
答案 2 :(得分:0)
这是解决方案:
->join('INNER', $db->quoteName('#__com_units', 'b') . ' ON (' . $db->quoteName('b.id') . ' = ' . $db->quoteName('a.unit') . ')');