The following delete query:
DoCmd.RunSQL "delete * from [SBCD] where [SRF#]='" & strInput & "'"
and
DoCmd.RunSQL "delete [SRF#] from [SBCD] where [SRF#]='" & strInput & "'"
Are they equivalent in term of functionality?
DoCmd.RunSQL "delete * from [SBCD] where [SRF#]='" & strInput & "'"
and
DoCmd.RunSQL "delete [SRF#] from [SBCD] where [SRF#]='" & strInput & "'"
Are they equivalent in term of functionality?
Comment