我正在使用MySql,請參閱http://postimg.org/image/waso0lsnf/以查看我的表結構。 我想獲取department_id
其中enduser_to_department = Y
以及department_to_enduser = Y
。 價值可能在同一行不同的行department_id.
在mysql中獲取不同行的值
我試過以下的方式,但它的工作單行。
SELECT `departments`.`department_id`, `departments`.`department`
FROM `custom_forms_departments` , `departments`
WHERE departments.department_id = custom_forms_departments.department_id
AND (`custom_forms_departments`.`enduser_to_department` = 'Y'
OR `custom_forms_departments`.`department_to_enduser` = 'Y')
GROUP BY `departments`.`department_id`
ORDER BY departments.department_id DESC
http://postimg.org/image/waso0lsnf/
編輯:從URL添加的圖像。
世界上沒有附模式/結構...我們需要更多信息繼續。 – Fazer87
請按照編輯的問題檢查http://postimg.org/image/waso0lsnf/。 – pratik
那麼您嘗試過哪些SQL? –