Sql query to show if 30days have gone by a members join date?
-
I want to create a query to show only members which have been members for more than 30days, i have already made a query to show: SELECT Members.FirstName, Members.LastName, Subscription.SubscriptionID, Subscription.SubscriptionType FROM Members INNER JOIN Subscription ON Members.MemberID = Subscription.MemberID So i need to somehow calculate if 30days have gone by a since the members membership date till today's date.
-
Answer:
you will need to use the DATAADD function.. Let's say you have the Subscription Date as Subscription.SubscriptionDate, then you can do: SELECT Members.FirstName, Members.LastName, Subscription.SubscriptionID, Subscription.SubscriptionType FROM Members INNER JOIN Subscription ON Members.MemberID = Subscription.MemberID WHERE date < DATEADD(day, -30, GETDATE()) I am not sure of the exact syntax above but i am sure you can get what you are after with the DATAADD function
Zaid Shahid at Yahoo! Answers Visit the source
Other answers
use DATEDIFF() function to calculate two dates difference
nicefx
SELECT Members.FirstName, Members.LastName, Subscription.SubscriptionID, Subscription.SubscriptionType, Subscription.date FROM Members INNER JOIN Subscription ON Members.MemberID = Subscription.MemberID WHERE subscription date<2012-03-22
NGPriest
check here for ASP.Net real life example ctrlcvprogrammer.blogspot.com
bapi
Related Q & A:
- How can I optimize this dynamic SQL query in oracle with PL/SQL?Best solution by docs.oracle.com
- How to convert sql query to Hibernate Criteria query?Best solution by Stack Overflow
- How to convert my SQL query to MS Access query?Best solution by Stack Overflow
- How to output XML from a regular SQL query?Best solution by Stack Overflow
- How to convert a SQL query into hibernate criteria?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.