Hi:
A base table called V6a.dbf that collects data each hour.
I am trying to figger how to capture every 24th hour record (Midnight) 7 days a week into a cursor. . .to use. . .
What I have is:
SELECT V6a.Prod_pk, V6a.ThisDateTime, V6a.ProdName;
FROM ;
contract1!v6a;
WHERE V6a.ThisDateTime = ( ? )
into Cursor ViewV6Amidnight
browse
(Field of thisdatetime: is datetime)
How can I do this?
Appreciate any feedback
Mike
A base table called V6a.dbf that collects data each hour.
I am trying to figger how to capture every 24th hour record (Midnight) 7 days a week into a cursor. . .to use. . .
What I have is:
SELECT V6a.Prod_pk, V6a.ThisDateTime, V6a.ProdName;
FROM ;
contract1!v6a;
WHERE V6a.ThisDateTime = ( ? )
into Cursor ViewV6Amidnight
browse
(Field of thisdatetime: is datetime)
How can I do this?
Appreciate any feedback
Mike