How to do join query in laravel?

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

Was this solution helpful to you?

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:

Just Added Q & A:

Find solution

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.