// Counting number of totalPrice from column itemPrice table
Model.findAll({
attributes: {
include: [
[sequelize.fn('COUNT', sequelize.col('itemPrice')), 'totalPrice']
]
}
});
// for gettting all username in uppercase
instance.update({
username: sequelize.fn('upper', sequelize.col('username'))
});