Simple search form

J

jimmylad

I have one table containing ID,d,m,y,temp,salinity fields. i would
like to create a form to search for a set of temperatures between 1
value and another value of temperature which will then return the
dates these temps fell. any help for a real newbie would be
appreciated
 
R

Rick Brandt

jimmylad said:
I have one table containing ID,d,m,y,temp,salinity fields. i would
like to create a form to search for a set of temperatures between 1
value and another value of temperature which will then return the
dates these temps fell. any help for a real newbie would be
appreciated

Not sure why you chose to store the date in three separate fields but...

SELECT d, m, y, temp
FROM YourTableName
WHERE temp BETWEEN SomeValue AND SomeOtherValue
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top