How to solve the problem of multi-table modification in nodejs sequelize framework?

< hr >

how can this method be changed to sequelize syntax? Multiple table associations
urgent.

makeupUpdateAccountInfo: function (data) {
        var companyCode = ""
        if (data && data.companyCode) {
            companyCode = data.companyCode.toUpperCase()
        }
        var parameJson = {
            "set": {
                "a.nick_name": data.nickName,
                "a.company_code": companyCode
            },
            "table": ["account as a", "account_session as ass"],
            "where": {
                "and": {
                    "ass.access_key": data.session,
                    "ass.account_id": "item:a.id"
                }
            }
        };

        return parameJson;
    }
}
Apr.02,2021
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b37fe4-2c0cf.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b37fe4-2c0cf.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?