我不知道它是否对我的设置造成了任何影响,但是sequelize突然在方言属性中抛出了一个错误,即不支持mysql并且无法读取property 'dialectName' of undefined。SError: The dialect mysql is not supported.Supported dialects: mariadb, mssql, mysql, postgres, and sqlite.config.database, config.username, config.pass
我的用例是只从表中删除具有唯一键(或主键)的行,以确保删除正确的数据。delete from my_table where id = 10delete from my_table where first_name = "John"
对于MySQL仅仅使用MySQL就可以做到这一点吗?我知道,我可以用我的后端语言在我的逻辑部分添加多个检查,但我想检查是否可以在MySQL部分处