Office中国论坛/Access中国论坛

标题: 如何清空所有表中的所有记录? [打印本页]

作者: chunyi    时间: 2004-12-13 19:20
标题: 如何清空所有表中的所有记录?
如何清空数据库中所有表中的所有记录?
作者: 方漠    时间: 2004-12-13 19:34
用DAO,For循环每一个TableDef,然后加如下语句。

DELETE 语句示例

此示例删除所有员工其职称为 Trainee 的记录。当 FROM 子句仅包含一个表,您不必在 DELETE 语句中列出表名称。

Sub DeleteX()





    Dim dbs As Database, rst As Recordset



    ' 在您的计算机中修改此行使其正确指到 Northwind 的路径。

    Set dbs = OpenDatabase("Northwind.mdb")

    ' 对运费超过 $100 的订单,



    ' 删除员工职称为 Trainee 的员工记录。   

    dbs.Execute "DELETE * FROM " _

        & "Employees WHERE Title = 'Trainee';"

   

    dbs.Close



End Sub

[此贴子已经被作者于2004-12-13 11:35:57编辑过]


作者: Trynew    时间: 2004-12-13 21:35
Private Sub Command0_Click()

Dim i As Integer, TabName As String

For i = 0 To CurrentDb().TableDefs.Count - 1

    TabName = CurrentDb().TableDefs(i).Name

    If (Left$(TabName, 1) <> "~") And (Left$(TabName, 4) <> "Msys") Then

        CurrentDb().Execute "Delete * From " & TabName

    End If

Next

End Sub


作者: hang004    时间: 2006-10-17 19:11
[em04]




欢迎光临 Office中国论坛/Access中国论坛 (http://www.office-cn.net/) Powered by Discuz! X3.3