-
Notifications
You must be signed in to change notification settings - Fork 0
SELECT: WEEK
Ali Amirnezhad edited this page Jul 23, 2019
·
1 revision
const query = myQueryBuilder
.SELECT({ $WEEK: 'field' })
.from('table')
.get();
// SELECT WEEK(`field`) FROM `table`
const query = myQueryBuilder
.SELECT({ $WEEK: { field: 'fieldWEEK' } })
.from('table')
.get();
// SELECT WEEK(`field`) AS `fieldWEEK` FROM `table`