Write an StoredProcedure to get the values of a column
within a date range.
Answer / suren
Example:
select col1 from table_name where
(( convert(DateTime,Date_Column1,102) between coalesce
(@Date_Column1,convert(DateTime,Date_Column,102)) and
coalesce(@Date_Column2,convert(DateTime,Date_Column,102))))
//Date_Column: Column in the Table
//Date_Column1: first value of date range
//Date_Column12: second value of date range
Is This Answer Correct ? | 2 Yes | 2 No |
Should I use readerwriterlock instead of monitor.enter/exit?
Tell us what is heap and what is stack?
What are the new features in .net core?
What is RCW (Run time Callable Wrappers)?
Write code for fetch record nos 15 to 25 from a dataset containing 50 records?
Explain role-based security in .Net.
What?s different about a Windows service as compared to a regular application?
What is Ajax design pattern in .NET?
Can you write a class without specifying namespace?
for the textbox if i want to allow only numbers.what ever the characters u enter it should not take.which event u used?
What are the namespace available in .net?
what is the use of stored procedure which has only one select statement over simple select statment query ? Why to write a stored procedure then ?