谢谢!作者: tz-chf 时间: 2010-1-23 09:31
delete * from 示范户 where 示范户姓名 is null作者: dasxsf 时间: 2010-1-23 11:29
Private Sub Form_Close()
delete * from 示范户 where 示范户姓名 is null
End Sub
提示语法错误作者: iamee 时间: 2010-1-23 12:00
docmd.runsql作者: dasxsf 时间: 2010-1-23 12:13
docmd.runsql 这个语句怎么用?谢谢!作者: wyptk 时间: 2010-1-24 16:01
Private Sub Form_Close()
DoCmd.SetWarnings False
DoCmd.RunSQL "delete * from 示范户 where 示范户姓名 is null"
DoCmd.SetWarnings True
End Sub