Viewing 13 posts - 1 through 13 (of 13 total)
March 16, 2017 at 12:03 pm
Okay have you tried inserting records into a temporary table on individual conditions yet?
So to see if it's a particular condition that's causing the long wait separate them to...
December 10, 2015 at 4:15 pm
maysoonshahin:
Couple suggestions. Let me know either way if anything isn't clear.
# 1) Please don't use the "select (*) " in your code. Only select the "required"...
December 10, 2015 at 3:56 pm
SET NOCOUNT ON
DECLARE
@RowCnt INT
...
January 3, 2014 at 12:21 pm
Sorry I had some (back at work fires) to put out. 🙂
Here's an approach that'll help you out a bit. Remember you can assign values...
January 2, 2014 at 4:07 pm
You can keep breaking it down more as needed.
January 1, 2014 at 7:20 pm
Does this get you closer?
SELECT CONVERT( CHAR(10), sosb_CarDetail_DateReleased, 101 ) AS [DateReleased]
, Count( sosb_CarDetail_CarNumber ) ...
January 1, 2014 at 7:14 pm
So just so that I don't go in the wrong direction is this something towards what you are looking for?
SELECT CONVERT( CHAR(10), sosb_CarDetail_DateReleased, 101 ) AS [DateReleased]
...
January 1, 2014 at 12:36 pm
How are you looking at presenting the data? Do you need one table showing all the details or what will be displaying the information out?
January 1, 2014 at 10:15 am
Are you still looking to solve this?
December 31, 2013 at 4:49 pm
Viewing 13 posts - 1 through 13 (of 13 total)