Skip to content
Advertisement

Get Current date, current month, current year depending on user selection – SQL stored procedure

I have a stored procedure that gives results depending on multiple values from the User(filtering), in my query I have 2 date columns date_start and date_end, I want to allow the user to return data depending on his selection from 2dropdownmenu one for start date and the other for end date as this: (this day – this month – this year – All Data).

I’m working Using C# winform, all the search part is done and it’s working, but I can’t figure out how to add the query to the filter depending on the value coming from the dropdownmenu.

current date : where date_start= cast(getdate() as Date)

current month: WHERE MONTH(date_start) = MONTH(CURRENT_DATE()) AND YEAR(date_start) = YEAR(CURRENT_DATE())

current year: where year(date_start) = year(getdate()) and datepart(dy, date_start) <= datepart(dy, getdate())

here is my stored producer:

Advertisement

Answer

With the help of comments, and especially from @Charlieface I created the Procedure, Thank you all. Here is the final procedure, and I welcome any improvements suggestions:

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement