我的桌子灌溉中有以下行:
CodeIrrigation |CodeSecteur|Date_Irrigation | Cubage |
---------------|-----------|----------------|--------|
1 | 2 | 12/04/2012 | 1300 |
---------------|-----------|----------------|--------|
2 | 3 | 12/04/2012 | 1500 |
---------------|-----------|----------------|--------|
我想要的结果是:
CodeIrrigation |CodeSecteur1|CodeSecteur2|Date_Irrigation |
---------------|------------|------------|----------------|
1 | 2 | 3 | 12/04/2012 |
是否有可以返回类似内容的查询?
答案 0 :(得分:1)
试试这个:
SELECT
MIN(CodeIrrigation) AS 'CodeIrrigation',
MIN(CodeSecteur) AS 'CodeSecteur1',
MAX(CodeSecteur) AS 'CodeSecteur2'
FROM table
GROUP BY Date_Irrigation