M
Mark Burnham
I have a single table that I am trying to create a query for. This shouldn't
be difficult, but I'm finding it is. I've got a couple hundred thousand
records in the table. I am trying to create the query and exclude some of
the records that I don't care about.
This is a table of user internet activity.
I don't want to see
"http://download.windowsupdate.com/v7/windowsupdate/redir/wuredi", but I do
want to see "http://www.overstock.com". (for example.) I'm trying to get
this one to work and then I will add others using the OR operator.
This is my query:
SELECT [20080717].[IP address], [20080717].[Date/Time], [20080717].URL,
[20080717].[Deny/Allow]
FROM 20080717
WHERE ((([20080717].URL)<>"*windowsupdate*")) OR ((([20080717].URL) Not Like
"*windowsupdate*"))
ORDER BY [20080717].[IP address], [20080717].[Date/Time];
What am I doing wrong?
Thanks for your help.
be difficult, but I'm finding it is. I've got a couple hundred thousand
records in the table. I am trying to create the query and exclude some of
the records that I don't care about.
This is a table of user internet activity.
I don't want to see
"http://download.windowsupdate.com/v7/windowsupdate/redir/wuredi", but I do
want to see "http://www.overstock.com". (for example.) I'm trying to get
this one to work and then I will add others using the OR operator.
This is my query:
SELECT [20080717].[IP address], [20080717].[Date/Time], [20080717].URL,
[20080717].[Deny/Allow]
FROM 20080717
WHERE ((([20080717].URL)<>"*windowsupdate*")) OR ((([20080717].URL) Not Like
"*windowsupdate*"))
ORDER BY [20080717].[IP address], [20080717].[Date/Time];
What am I doing wrong?
Thanks for your help.