Re: Sql mdb
- From: "limelect" <limelect@xxxxxxxxxxxx>
- Date: Wed, 13 Feb 2008 08:32:06 +0200
Thank you Mike date ok but time should be
with a POINT at list for me 07.00.00 you gave me a lead
thanks shlomo
As for date (my last quest) is the date field (time) a string??
Becouse i used it as a date format
i wander if...
Do you know of a function to convert date/time to mdb format?
"MikeR" <nf4lNoSpam@xxxxxxxxx> wrote in message
news:47b1ab55$1@xxxxxxxxxxxxxxxxxxxxxxxxx
limelect wrote:
I have moved from pardox to mdbAre you trying to make a select query, or an update or insert? Trying to
On paradox i could split the time and date on 2 fields
Now my record stil hase time and date separetly
I need to make an sql on date and time
1.How can i do it
2. I tried with sql startdate=11/09/2008 no luck dose not filter at all
(no error)
3. I tried with sql startdate='11/09/2008' error
4. I tried with sql startdate="11/09/2008" error
5 I tried with sql startdate=11/09/2008 0:0 error
P.S the filed hase only date no time .should i include time,I cannot!!
build an SQL string?
The date and time delimiter in an mdb database is # and the date must be
mm-dd-yyyy and time is hh:mm:ss if the field in the database is a
datetime.
SQL := 'Select * from table where startdate = #11-09-2008#';
You can concatenate the date and time, separated by a space.
Startdate := '#' + date + ' ' + time + '#';
Mike
.
- Follow-Ups:
- Re: Sql mdb
- From: Paul Scott
- Re: Sql mdb
- References:
- Sql mdb
- From: limelect
- Re: Sql mdb
- From: MikeR
- Sql mdb
- Prev by Date: Re: Sql mdb
- Next by Date: Re: Sql mdb
- Previous by thread: Re: Sql mdb
- Next by thread: Re: Sql mdb
- Index(es):
Relevant Pages
|