gpt4 book ai didi

node.js - Sequelize truncate 方法删除表

转载 作者:行者123 更新时间:2023-12-03 22:39:45 25 4
gpt4 key购买 nike

我正在尝试使用 sequelize 删除一个表的内容,我为该表创建了一个方便的模型,我正在使用以下代码:

Table.truncate({transaction: t})

现在我收到错误 DROP command denied to user 。当我只想删除表格的内容时,他为什么要删除表格?

有没有办法简单地删除行而不删除表?

最佳答案

您也可以使用 .sync

Table.sync({force : true}); // this will clear all the entries in your table.



根据 DOC ,这是 Model.destroy({ truncate: true }) 的便捷方法

关于node.js - Sequelize truncate 方法删除表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51023649/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com