Another Stumper

  • Thread starter Thread starter JimS
  • Start date Start date
J

JimS

You'll probably get this one right away...

I have a table with 66000 rows. 57000 rows have a Proj# column that is of
the form "C00000". Three rows have spurious stuff in the Proj# column like
"Total" and "Report Run...." 9,000 or so rows have a null in that column.

I ran a query that couldn't be simpler:

DELETE AllMatreqIssues.[PROJ #]
FROM AllMatreqIssues
WHERE (((AllMatreqIssues.[PROJ #]) Not Like "C*"));

It only deletes the three rows with spurious characters. It does not delet
the rows that are null. Why?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top