Viewing 15 posts - 1,921 through 1,935 (of 3,489 total)
You can't store "spaces" in a date. Period. Dates are stored as numbers in T-SQL, and you can't store spaces in a numeric field.
May 14, 2016 at 6:47 pm
For a newb, nice job posting!
This should do it... you might want to play with ROW_NUMBER() for a while... super handy once you figure out how it works.
SELECT y.Class
,...
May 12, 2016 at 9:43 pm
"I need it to filter on the latest version of each of the 3 documents the person has to sign."
but there's no MAX(Date) anywhere... how are you returning the latest...
May 12, 2016 at 11:56 am
the usual way of dealing with a series of IIF statements is nesting them... Here's the barebones structure (which you've sorted out)
=IIF(<test>,<true part>,<false part>)
In your case, I think you...
May 12, 2016 at 2:33 am
You don't really have a new column for each day of the month, do you? If you do, that's the source of your problem.
A little normalization is a beautiful...
May 12, 2016 at 12:20 am
SSRS and Access reports are alike in that respect - they have their own sorting and grouping, so they'll override the sorting in the dataset. If you want something sorted...
May 11, 2016 at 10:52 am
Sounds like a homework assignment. what did you try?
Also, if you post your question like this, you're more likely to get answers...
Nice runnable code to recreate your problem....
CREATE TABLE...
May 10, 2016 at 7:20 pm
you would need to join to a table of hours and outer join the two...
SELECT Hrs.[TheHour]
,Movie.[StartTime]
FROM Hrs LEFT JOIN Movie...
May 10, 2016 at 7:02 pm
After looking at this and playing with it for a little while, I stand by my original conclusion - you need the UNsummarized data from somewhere. If you can talk...
May 10, 2016 at 3:51 pm
Maybe this article?
https://www.simple-talk.com/sql/database-administration/gail-shaws-sql-server-howlers/
May 9, 2016 at 3:21 pm
This is Lynn Pettis' calculation[/url] for first day of the next month...
select dateadd(mm, datediff(mm, 0, @ThisDate) + 1, 0) -- Beginning of next month
last day of the month is the...
May 8, 2016 at 12:15 pm
normal way to post is like this...
SELECT '2016-01-31' AS plant_date
, 4 AS History_Ind
, 3143 AS Prop_Code
, '2016-01-19' AS Void_Start_Date
, '2016-03-14' AS Let_Date
, 'Void' AS Void_Status
UNION ALL
SELECT '2016-02-29',4,3143,'2016-01-19','2016-03-14','CFWD'
UNION ALL
SELECT '2016-03-31',4,3143,'2016-01-19','2016-03-14','CFWD'
UNION...
May 8, 2016 at 6:42 am
This
cast( cast(year(plant_date) as nvarchar(50))+'-'+cast(month(plant_date) as nvarchar(50))+'-1' as datetime) as plant_date
is a calculated column in your Calendar table.
Sounds like you might want to look up Calendar tables. Here's a good...
May 7, 2016 at 10:26 pm
Why not just use a Calendar table... you can use a table-valued function to generate a list of dates on the fly. Then it's just a pure count.
May 7, 2016 at 8:24 pm
Viewing 15 posts - 1,921 through 1,935 (of 3,489 total)