问题 I have a SQL query that refers to the same table twice, and I need to alias the table to two separate aliases. I can't quite figure out how to compose this with Knex. There's a 'Words' table and a 'Users' table. The Words table has two foreign keys, 'author_id' and 'winner_id', referencing the Users table's 'id' column. Here's the SQL I'm trying to compose in Knex: SELECT w.*, ua.name, uw.name FROM Words AS w INNER JOIN Users AS ua ON w.author_id = ua.id LEFT JOIN Users AS uw ON w.winner_id =