query

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a field in my database that will remain blank until I add a date. I
want to run query that shows the blank field that way I will know that I have
not rec. payment
 
taylorint said:
I have a field in my database that will remain blank until I add a date. I
want to run query that shows the blank field that way I will know that I have
not rec. payment

SELECT < column list >
FROM < table name >
WHERE date_column IS NULL
 
Back
Top