我的餐桌灌溉设备有以下几行:
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 |
有没有可以返回类似内容的查询?
最佳答案
尝试这个:
SELECT
MIN(CodeIrrigation) AS 'CodeIrrigation',
MIN(CodeSecteur) AS 'CodeSecteur1',
MAX(CodeSecteur) AS 'CodeSecteur2'
FROM table
GROUP BY Date_Irrigation