Mysql – In knex what is the difference between knex().select("id").from("users) and knex("users").select("id")
/I've already established a connection in knex with mysql and i am trying to do a loginForm connected to mysql db and right now i am doing a login check.I was wondering if there is any difference between this: knex().select("id").from("users)…