Hi,
I have a problem with the select statement with a Date field in foxpro project
I tired
where &TRDB is a table name and ltr is a date value (eg: 02/03/2011)
But the select statement is always returning whole table .
What am i doing wrong with the Select Statement
I have a problem with the select statement with a Date field in foxpro project
Code:
SELECT * from &TRDB where inpdate > {ltr} into table temp.dbf
use temp.dbf
GO BOTTOM
@ 2,3 SAY RECNO()
Code:
SELECT * from &TRDB where inpdate > {^ltr} into table temp.dbf
But the select statement is always returning whole table .
What am i doing wrong with the Select Statement