Skip to content
Snippets Groups Projects

Merge new updates into master

1 file
+ 4
4
Compare changes
  • Side-by-side
  • Inline
+ 4
4
@@ -206,10 +206,10 @@ rqf.addField({
studentsAeeApp.get('/', rqf.parse(), (req, res, next) => {
req.sql.from('numero_estudantes_aee')
.field('numero_estudantes_aee.ano_censo')
.field('COUNT(distinct numero_estudantes_aee.id_aluno)', 'total')
.group('numero_estudantes_aee.ano_censo')
.order('numero_estudantes_aee.ano_censo')
.field('ano_censo')
.field('COUNT(distinct id_aluno)', 'total')
.group('ano_censo')
.order('ano_censo')
next();
}, rqf.build(), (req, res, next) => {
console.log(req.sql.toString());
Loading