📅  最后修改于: 2022-03-11 14:55:44.233000             🧑  作者: Mango
const query = knex()
.from('table1')
.join('table2', function() {
this.on('tab1.id', '=', 'tab2.id')
.onVal('tab2.code', '=', 'someValue')
}, 'left')