gpt4 book ai didi

r - 使用 R(DBI 包)从 SQL Server 表中删除行

转载 作者:行者123 更新时间:2023-12-04 11:51:13 26 4
gpt4 key购买 nike

我在 SQL Server 中有一个表,我正在尝试向其中添加数据。在添加数据之前,我想删除所有现有记录,但我不想删除该表并重新创建它,因为它在 SQL Server 中创建了我想要保留的索引。

我有什么选择来使用 r 来完成这个?

最佳答案

有多种方法可以删除表中的所有记录。
你可以 TRUNCATEDELETE

dbExecute(con, "TRUNCATE TABLE TableName")
dbExecute(con, "DELETE FROM TableName")
编辑:使用 dbExecute() 而不是 dbSendQuery()
dbSendQuery() 文档中所述

This method is for SELECT queries only. Some backends may support data manipulation queries through this method for compatibility reasons. However, callers are strongly encouraged to use dbSendStatement() for data manipulation statements.


但是, send 方法不会自动清除返回的结果对象。因此 get execute 方法更适合交互使用。来自 dbSendStatement() 文档:

To query the number of affected rows, call dbGetRowsAffected() on the returned result object. You must also call dbClearResult() after that. For interactive use, you should almost always prefer dbExecute().

关于r - 使用 R(DBI 包)从 SQL Server 表中删除行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55874019/

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