Skip to content

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`
Clone this wiki locally