Answers for "count rows in table knex postgres"

2

knex.js count

knex('users').count('active', {as: 'a'})Outputs:select count(`active`) as `a` from `users`
Posted by: Guest on May-14-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language