473,385 Members | 1,925 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

SQL Date Between Query

2
Hey guys, I'm in need of your help!
I have an access database with a field called datee (Yes it has 2 e's) which is set to memo. In there is dates with the format dd/mm/yyyy. I need to develop a query to select between two dates.
e.g 12/02/2002 12/02/2003
I have tried so many things, from the BETWEEN function, to the ODER By function but to no avail. The between function only brings back results between the the dd section and ignores the month and year altogether.

<code>
SELECT *
FROM tbldata
WHERE datee BETWEEN ='#Form.startdate#'' AND '#Form.enddate#'
</code>

Any help greatly appreciated
thanks
Jul 11 '07 #1
3 12728
Vidhura
99
Hey guys, I'm in need of your help!
I have an access database with a field called datee (Yes it has 2 e's) which is set to memo. In there is dates with the format dd/mm/yyyy. I need to develop a query to select between two dates.
e.g 12/02/2002 12/02/2003
I have tried so many things, from the BETWEEN function, to the ODER By function but to no avail. The between function only brings back results between the the dd section and ignores the month and year altogether.

<code>
SELECT *
FROM tbldata
WHERE datee BETWEEN ='#Form.startdate#'' AND '#Form.enddate#'
</code>

Any help greatly appreciated
thanks

SELECT *
FROM tbldata
WHERE datee BETWEEN startdate AND enddate

before giving the value from form,convert the startdate and endate to datetime type
Jul 11 '07 #2
xres
2
SELECT *
FROM tbldata
WHERE datee BETWEEN startdate AND enddate

before giving the value from form,convert the startdate and endate to datetime type
How would I go about converting it to datetime?
thanks
Jul 11 '07 #3
Generate two new variables

Expand|Select|Wrap|Line Numbers
  1. DECLARE dtStart as Date
  2. DECLARE dtEnd as Date
  3.  
  4. dtStart = CDate (Form.startdate)
  5. dtEnd = CDate (Form.enddate)
  6.  
Then :

Expand|Select|Wrap|Line Numbers
  1. SELECT *
  2. FROM tbldata
  3. WHERE datee BETWEEN dtStart AND dtEnd
  4.  
Jul 11 '07 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

4
by: Russell | last post by:
I'm having a fit with a query for a range of dates. The dates are being returned from a view. The table/field that they are being selected from stores them as varchar and that same field also...
2
by: BlackFireNova | last post by:
I have an Access 2003 mdb which contains software records. I need to sort on a particular type of software, and then identify and count how many copies there are per each group of that type...
10
by: Kenneth | last post by:
I have a Query that consist of a lot of different sales data, and one of the colums are different date. The date goes from 1jan2003 til 31jan2003. in this Query I only want the salesdata for...
7
by: Nicolae Fieraru | last post by:
Hi All, I have a table tblProducts where I have four fields:\ Index, ProductName, EnterDate (as Date/Time - Medium Date), PurchaseDate (Date/Time - Medium Date) The EnterDate is automatically...
4
by: Peter Bailey | last post by:
I have a vba string taht dynamically creates the query which has two dates in it that it grabs off an open form as a string from the textbox. What I generate in vba is: SELECT DOSMBK.Date,...
12
by: Steve Elliott | last post by:
I have a query set up to gather together data between two specified dates. Shown in the query column as: Between #24/09/2004# And #01/10/2004# Is it possible to enter several different date...
3
by: manning_news | last post by:
Using A2K. I've been asked to modify a report currently requiring only one date parameter to now accept a date range. The main report has 2 subreports and is not bound to a table or query. The...
11
by: Dixie | last post by:
How can I programatically, take some Date/Time fields present in a table in the current database and change their type to text? dixie
10
by: Daniel | last post by:
In Microsoft Access I can write a query that includes the criteria: Between Date()-7 And Date() to retrieve the records from a table that fall within the last week. I'm trying to write a...
2
by: sixdeuce62 | last post by:
Hello, I am trying to create a query that will prompt me to enter the parameter value if beginning date and ending date. I have created everything I need in the query, but I have to manually go...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.