Viewing 11 posts - 1 through 11 (of 11 total)
Jeff,
As requested, I am adding the sql for creating the data.
Apologies for not doing it.
declare @student table
(
StudentId int
,SubmissionDate date
)
insert into @student(StudentId,SubmissionDate) values(1,'10/01/2018')
insert into @student(StudentId,SubmissionDate) values(2,'10/01/2018')
insert into @student(StudentId,SubmissionDate)...
November 22, 2022 at 7:28 pm
Thank you everyone for taking the time to answer my question.
All your answers were very insightful.
September 21, 2019 at 2:54 pm
SSRS is not blocking,but is it a good practice to create 6 different Datasets and tying it up with 6 different stored procedures.
January 24, 2014 at 9:11 am
Awesome pietlinden.....
Thank you so much.....
It worked....
January 19, 2014 at 7:34 pm
Thanks Chuck Hottle and ColdCoffee for your quick response
I am debugging a Stored Procedure and came across this SQL Statement.
The actual sql statement is some what like:
DECLARE @itemId INT
SET @itemId...
April 6, 2012 at 3:59 pm
Thanks guys for all the responses!!!
March 12, 2012 at 12:23 pm
Gail,
My mistake,I was running the query on SQL Server 2000.
Thanks and Regards
December 29, 2011 at 1:32 pm
As the correct output is Null,'Is Zero', 'Is One', 'Is Two'.
I want to know why NULL is also the part of the output.
The explanation says that:
The statement CASE COL1 WHEN...
October 11, 2011 at 12:55 pm
Viewing 11 posts - 1 through 11 (of 11 total)