从表中删除与数组中的数据匹配的记录?
我有一个包含 2 个字段的表。单词和时间戳。 然后我有这个包含一些单词的数组。 如何删除表中与数组中的单词匹配的所有记录? 假设该模型称为“Word”。
关于如何实现这一目标有什么想法吗?也许循环遍历数组并运行一些销毁查询。有人可以指导我到这里吗?谢谢
I have a table of 2 fields. Word and timestamp.
Then i have this array which contains some words.
How do i delete all the records in the table which match with the words in the array?
Suppose that the model is called "Word".
Any ideas on how to achieve this? maybe loop through the array and run some destroy queries. Can anybody direct me here? thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
执行此操作:
这将在一个 SQL 语句中删除与给定数组中的单词匹配的行。
例如:
Do this:
This will delete the rows matching the words in the given array, in ONE SQL statement.
E.g.:
如果您在模型上定义了回调,则裸 SQL 将不会调用它们。这种情况下推荐的方式是:
If you defined callbacks on the model bare sql won't call them. The recommended way in this case is: