close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

asearching between 2 dates

Thread began 7/07/2009 12:41 pm by Mushroom-Graphics | Last modified 7/07/2009 1:43 pm by Mushroom-Graphics | 1970 views | 4 replies |

Mushroom-Graphics

asearching between 2 dates

Hi,

I have a table that had car parts. There are 2 columns First_Year and Last_Year. These are the dates for the model years a part is availabel for. I have a date drop down, that can be picked from, so if you pick, Modl = Mustang GT, Year = 1997, I need to get all of the parts for the models that the year includes 1997. It could be the engine is 1995 to 1998.

I have tired this:
$WADbSearch1->addComparison("IDModel_new","".((isset($_POST["model"]))?$_POST["model"]:"") ."","AND","=",1);
$WADbSearch1->addComparison("FirstYear_new","".((isset($_POST["year"]))?$_POST["year"]:"") ."","AND",">=",1);
$WADbSearch1->addComparison("LastYear_new","".((isset($_POST["year"]))?$_POST["year"]:"") ."","AND","<=",1);

And I have tried hand coding using BETWEEN.

Any helpful hints?

larry

Sign in to reply to this post

Ray BorduinWebAssist

What data type are you using for your FirstYear_new and LastYear_new fields in your database? Looks like they might be varchar, that could throw off your search results...

Also looks like you have your >= and <= mixed up.

seems like it should be:


$WADbSearch1->addComparison("IDModel_new","".((isset($_POST["model"]))?$_POST["model"]:"") ."","AND","=",1);
$WADbSearch1->addComparison("FirstYear_new","".((isset($_POST["year"]))?$_POST["year"]:"") ."","AND","<=",0);
$WADbSearch1->addComparison("LastYear_new","".((isset($_POST["year"]))?$_POST["year"]:"") ."","AND",">=",0);

Sign in to reply to this post
Did this help? Tips are appreciated...

Mushroom-Graphics

Data Type

Both are Year (4)

I believe I have them correct. I want:
Greater than or Equal to >= First Year
Less than or Equal to <= Last Year

Larry

Sign in to reply to this post

Ray BorduinWebAssist

Your example:

$WADbSearch1->addComparison("IDModel_new","".((isset($_POST["model"]))?$_POST["model"]:"") ."","AND","=",1);
$WADbSearch1->addComparison("FirstYear_new","".((isset($_POST["year"]))?$_POST["year"]:"") ."","AND",">=",1);
$WADbSearch1->addComparison("LastYear_new","".((isset($_POST["year"]))?$_POST["year"]:"") ."","AND","<=",1);

would create the query:

WHERE IDModel_new = 'Mustang GT' AND FirstYear_new >= '2000' AND LastYear_new <= '2000'

so you see...

Even though you want
"Greater than or Equal to >= First Year
Less than or Equal to <= Last Year"

since the column is actually on the left hand side of the comparison you are specifying:
"First Year >= the entered value
Last Year <= the entered value"

Which is incorrect, and which is why my suggestion should be correct.

Sign in to reply to this post
Did this help? Tips are appreciated...

Mushroom-Graphics

Stupid Me

I posted the reply and was thinking about it and realized your point. Stupid Me!!!!!!

Works perfect now.

Thanks

Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...