SQL Statement for Date

I have try the following SQL, but found the error message ( Operand Type are not compatible with the operator )

Select SUM(LineAmount)
from salesLine
where salesLine.salesLine.ShippingDateRequested == “2/24/2011”;

Hi Michael,

Change the query to

select sum(LineAmount) from SalesLine
where SalesLine.ShippingDateRequested == 24\02\2011;

Naresh Kolli

Hi Naresh,

Thanks for your help. It work!!!

I would like to ask one more question, which data type is not need to use symbol " ", int, real, date ?

It is required only for the string data type…for the rest no need to use…

Thanks Naresh,

I would like to create a method for Date, is any method that when choose Date 10\2\2011, then it will return coming days,

11\2\2011

12\2\2011

13\2\2011

Hi Michael,

Directly u can add no.of days to the date

mkdate(10,10,2010)+1;

it gives next day…

if it is not , give me some more expalnation…

If you want to increase the date it can be done as suggested by Roshan…

Hi both,

What I want to do is ,

if I choose any days, it first show the first three date of that month.

For example:

Choose 1/1/2011. then 1/1, 2/1, 3/1 will be shown.

Choose 5/2/2011, then 1/2, 2/2, 3/2 will be shown.

7360.date.jpg

But I dont’t know how to handle it, as the EDT is Date, I could not use substr or make day.

I didnt get you what your saying…

Hi both,

What I want to do is ,

if I choose any days, it first show the first three date of that month.

For example:

Choose 1/1/2011. then 1/1, 2/1, 3/1 will be shown.

Choose 5/2/2011, then 1/2, 2/2, 3/2 will be shown.

7360.date.jpg

But I dont’t know how to handle it, as the EDT is Date, I could not use substr or make day.

Use function Global::dateStartMth(Date) to get startday of the month,then add according to it…

Hi all,

Thanks for your help. [Y]