我有
id | start | end
-------------------------------------
213 | 2014-03-20 | 2014-04-01
999 | 2014-03-20 | 2014-04-01
213 | 2012-02-10 | 2013-02-23
表是使用复合键(id, start, end)
我需要阅读所有现有的start&组合端
e.g。
res['start'] | res['end']
-------------------------
2014-03-20 | 2014-04-01
2013-02-10 | 2013-02-23
答案 0 :(得分:1)
你可能想要这个
SELECT DISTINCT `start`,`end` FROM table_name;