我正在構建一個用於踢腿的bug跟蹤器類型工具。 我有一個與我的數據版本控制有關的小概率的probs。Mysql - 從表B引用時需要獲取最新的表A
我有一個表'行動',我存儲有關行動(描述,誰進入它,狀態等)的所有數據。我也有一個action_status表,每次狀態改變時(從未分配,正在進行,完成等),它被記錄在這裏.. 我似乎無法做的是列出與他們的最新狀態值的行動。 你會注意到,狀態表有兩行,一個已經提交,otehr沒有..我只想看到已經提交的行= 0(我認爲最近的日期..)
使情況變得更糟,每個動作都有一個修訂標識,如果動作文本已更改,我將在動作表中使用相同標識創建一個新條目,但是會有一個新的修訂標識。但我認爲我應該提及以防萬一它干擾我的問題。
這裏是我的表格和一些示例數據: 我是一隻猴子嗎?
CREATE TABLE IF NOT EXISTS `action` ( `id` int(11) NOT NULL AUTO_INCREMENT, `id_action` int(11) NOT NULL, `id_priority` int(11) NOT NULL, `revision` int(11) NOT NULL DEFAULT '1', `reference` varchar(255) NOT NULL, `department` int(11) NOT NULL, `id_parent` int(11) NOT NULL DEFAULT '0', `sort_order` int(11) NOT NULL, `description` text NOT NULL, `date_start` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `date_end` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `id` (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ; -- -- Dumping data for table `action` -- INSERT INTO `action` (`id`, `id_action`, `id_priority`, `revision`, `reference`, `department`, `id_parent`, `sort_order`, `description`, `date_start`, `date_end`, `date_created`) VALUES (1, 1, 1, 1, '1', 1, 0, 2, 'Test Action revision test 1 a', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '2011-06-17 00:00:00'), (2, 1, 1, 2, '0', 1, 0, 2, 'Test Action revision test 1 b', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '2011-06-17 00:00:00'), (3, 2, 1, 1, '0', 1, 0, 1, 'Test Action revision test 2 a', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '2011-06-17 00:00:00'), (4, 2, 1, 2, '0', 1, 0, 1, 'Test Action revision test 2 b', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '2011-06-17 00:00:00'), (5, 3, 2, 1, '0', 1, 0, 0, 'Test Action revision test 3 b', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '2011-06-17 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `action_status` -- CREATE TABLE IF NOT EXISTS `action_status` ( `id` int(11) NOT NULL AUTO_INCREMENT, `id_department` int(11) NOT NULL, `id_priority` int(11) NOT NULL, `id_action` int(11) NOT NULL, `status` int(11) NOT NULL, `submitted` tinyint(4) NOT NULL, `approved` tinyint(4) NOT NULL, `published` tinyint(4) NOT NULL, `date_now` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `id` (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; -- -- Dumping data for table `action_status` -- INSERT INTO `action_status` (`id`, `id_department`, `id_priority`, `id_action`, `status`, `submitted`, `approved`, `published`, `date_now`) VALUES (1, 1, 1, 2, 3, 1, 1, 1, '2011-06-20 16:36:09'), (2, 1, 1, 2, 5, 0, 0, 0, '2011-06-20 16:40:09'); CREATE TABLE IF NOT EXISTS `priority` ( `id` int(11) NOT NULL AUTO_INCREMENT, `description` text NOT NULL, PRIMARY KEY (`id`), KEY `id` (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; -- -- Dumping data for table `priority` -- INSERT INTO `priority` (`id`, `description`) VALUES (1, 'Test Priority'), (2, '2nd Priority');
而我的「問題」 SQL
SELECT `action`.`id_priority`, `priority`.`description` as priority, `action`.`reference`, `action`.`description` as action, `action`.`id_action`, `action`.`date_start`, `action`.`date_end`, `action`.`id_parent`, `action_status`.`status`, `action`.`revision`, `action_status`.`submitted`, `action_status`.`date_now` FROM (`action`) LEFT JOIN action_status ON `action_status`.`id_action` = `action`.`id_action` JOIN `priority` ON `action`.`id_priority` = `priority`.`id` WHERE action.department = 1 AND action.revision =(SELECT MAX(ar.revision) FROM action as ar WHERE action.id_action = ar.id_action) GROUP BY `action`.`id_action` ORDER BY `id_priority` asc, `id_parent` asc, `sort_order` asc
是否要查看「Action」中從未在「Action_Status」表中有條目的所有條目? (即:要求左連接)。此外,您只能看到提交= 0(這應該是最後一項,否則多個同時發生的任務)的評論。如果給定操作的最後一個條目完成(提交的不是0),該怎麼辦?你也想包括它嗎? – DRapp