PostgreSQL Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsDatabasesPostgreSQL Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old May 1st, 2004, 12:10 PM
jeepster1987 jeepster1987 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2004
Posts: 2 jeepster1987 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
How do I return a value from one column based on a range from another column?

What I have is an "effective_date" column and a "tax_rate" column. I need to return a tax rate for a date within the effective date range. For example:
effective_date tax_rate
2002-01-01 0.010
2003-01-01 0.015
The date I am looking for is 2002-04-01. What I need is for the query to return 0.010 because the effective tax rate on that date would be 0.010. The problem is that I cannot figure out how to scan the table and have the query recognize that 2002-04-01 is after 2002-01-01, but before 2003-01-01. Any help would be greatly apprectiated. Thanks.

Reply With Quote
  #2  
Old May 1st, 2004, 12:24 PM
swampBoogie swampBoogie is offline
Contributing User
Dev Shed Regular (2000 - 2499 posts)
 
Join Date: Jan 2003
Location: Paris Uppland
Posts: 2,351 swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level) 
Time spent in forums: 1 Month 4 Days 8 h 2 m 22 sec
Reputation Power: 390
Code:
select tax_rate from t
where effective_date =
(select max(effective_date) from t
  where effective_date <= '2002-04-01')

Reply With Quote
  #3  
Old May 1st, 2004, 12:35 PM
jeepster1987 jeepster1987 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2004
Posts: 2 jeepster1987 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Thank you swampBoogie

This problem is much more complex than I explained, but now I can at least make some progress. I feel really stupid cause your query looks pretty simple and I have spent hours trying to figure out how to return what I need. Thanks again.

Reply With Quote
Reply

Viewing: Dev Shed ForumsDatabasesPostgreSQL Help > How do I return a value from one column based on a range from another column?

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap