Question
Outputting data using date field
I have a query that outputs the result based on date. I m
writing it as:
select * from apna where assignedto='#form.assignedto#' and updateddate='#form.thedate#'
The query looks like this with variables:
select * from apna where assignedto='Dave' and updateddate='4-19-2006'
It is showing no result. What am I doing wrong here?
select * from apna where assignedto='#form.assignedto#' and updateddate='#form.thedate#'
The query looks like this with variables:
select * from apna where assignedto='Dave' and updateddate='4-19-2006'
It is showing no result. What am I doing wrong here?