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