Write an StoredProcedure to get the values of a column
within a date range.



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

Post New Answer

More Dot Net General Interview Questions

Should I use readerwriterlock instead of monitor.enter/exit?

0 Answers  


Tell us what is heap and what is stack?

0 Answers  


What are the new features in .net core?

0 Answers  


What is RCW (Run time Callable Wrappers)?

0 Answers  


Write code for fetch record nos 15 to 25 from a dataset containing 50 records?

4 Answers   C Squared Systems,


Explain role-based security in .Net.

2 Answers  


What?s different about a Windows service as compared to a regular application?

1 Answers  


What is Ajax design pattern in .NET?

0 Answers  


Can you write a class without specifying namespace?

0 Answers  


for the textbox if i want to allow only numbers.what ever the characters u enter it should not take.which event u used?

5 Answers   IBM,


What are the namespace available in .net?

0 Answers  


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 ?

3 Answers  


Categories