Skip to content

SELECT: DAYOFMONTH

Ali Amirnezhad edited this page Jul 23, 2019 · 1 revision
const query = myQueryBuilder
    .SELECT({ $DAYOFMONTH: 'field' })
    .from('table')
    .get();

// SELECT DAYOFMONTH(`field`) FROM `table`
const query = myQueryBuilder
    .SELECT({ $DAYOFMONTH: { field: 'fieldDAYOFMONTH' } })
    .from('table')
    .get();

// SELECT DAYOFMONTH(`field`) AS `fieldDAYOFMONTH` FROM `table`
Clone this wiki locally