RE: help on my query statement

2003-11-10 Thread Erik Osterman
003 10:06 AM To: [EMAIL PROTECTED] Cc: Admin-Stress Subject: Re: help on my query statement * Admin-Stress > I have a table called TRANSACTION, it has some fields : > > REGDATE - date of the transaction > WHAT - a string (NOT UNIQUE) > CUSTOMER - customer code > > I want to q

Re: help on my query statement

2003-11-09 Thread Roger Baklund
* Admin-Stress > I have a table called TRANSACTION, it has some fields : > > REGDATE - date of the transaction > WHAT - a string (NOT UNIQUE) > CUSTOMER - customer code > > I want to query all WHAT that the date of the transaction was 15 > days before. > > So, my sql query is : > > SELECT WHAT FROM

help on my query statement

2003-11-09 Thread Admin-Stress
I have a table called TRANSACTION, it has some fields : REGDATE - date of the transaction WHAT - a string (NOT UNIQUE) CUSTOMER - customer code I want to query all WHAT that the date of the transaction was 15 days before. So, my sql query is : SELECT WHAT FROM TRANSACTION WHERE REGDATE < Now()