Viewing 15 posts - 436 through 450 (of 842 total)
If I was going to use the STUFF I would want to make sure the field was always the same length. And since I may not always be able to...
February 16, 2018 at 1:16 pm
February 16, 2018 at 11:38 am
February 16, 2018 at 10:33 am
SELECT original_value,
CAST(ROUND(CONVERT(INT, original_value) / 10.0, 0) AS DECIMAL(9, 3)) AS decimalvalue
FROM (VALUES('0054880'), ('0054885'), ('02120'), ('00002124'), ('2125')) x(original_value)
;
Results:original_value decimalvalue
0054880 ...
February 16, 2018 at 9:20 am
Just to see how bad I get pounded for this code. This will give you any 'A' claim types where you don't have a 'P' or all 'P' that don't...
January 25, 2018 at 3:12 pm
January 25, 2018 at 10:17 am
I can't believe the number of people hung up on February not always having the same last day. Some simple SQL with get the correct date for you.
Not everyone...
January 25, 2018 at 8:03 am
I just don't get it. Why if there is a field that will only contain the EOM date would I want to use that logic?
Why do this:
Where DateField...
January 24, 2018 at 2:56 pm
January 24, 2018 at 6:54 am
Just for S and G's I thought I'd throw in a solution. sorry for...
January 23, 2018 at 3:33 pm
January 23, 2018 at 8:30 am
This should have been:
" I would though guess that half the developers at my current shop and more than half at my prior shop wouldn't understand or follow the tally...
January 23, 2018 at 7:51 am
January 23, 2018 at 7:47 am
Viewing 15 posts - 436 through 450 (of 842 total)