|
-
May 22nd, 2000, 03:04 AM
#1
Thread Starter
Lively Member
I am trying to pull a set of records in a Access DB where all fields of column X are NULL. I am using an ADO and trying to use the following SQL to pull the recordset but it does not like this, Any suggestions for this statement please:
strQuery = "SELECT * FROM REPOINVENTORY WHERE DateTtlRcvD =" & vbnull
-
May 22nd, 2000, 03:21 AM
#2
Try:
Code:
strQuery = "SELECT * FROM REPOINVENTORY WHERE DateTtlRcvD = NULL"
-
May 22nd, 2000, 04:43 AM
#3
Thread Starter
Lively Member
THAT DIDN'T WORK. THANKS THOUGH
-
May 22nd, 2000, 10:31 PM
#4
Frenzied Member
strQuery = "SELECT * FROM REPOINVENTORY WHERE DateTtlRcvD Is Null"
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|