Hi,
I am developing an application with labview and access.
In the database there are duplicate records.I want to delete the duplicate records.
The scenario is:
Let there be a table named dataacquire with fields id(autogenerated),Date,datesend,value...
The duplicate records will occur in the following manner
ID Date datesend Value
1 05/05/07 05:05:05 AM 050507 30
2 05/05/07 05:05:05 AM 30
I want to delete the recordwithdatasendfield empty(NULL)
the sql query is supposed to be
delete from dataacquire where Date='#05/05/07 05:05:05 AM#' and datasend=' ' .
But because of the second part of the query(datassend='') the command is not working.
How do i write the sql query to delete record whose field is NULL?
Thanks....