Viewing 15 posts - 61 through 75 (of 379 total)
That was awesome!! Have a Merry Christmas, Steve!
December 24, 2019 at 10:49 am
Option 1 works only if you replace the {} with [] as follows:
df.columns = ['BillMonth', 'InvoiceAmount']
December 18, 2019 at 4:38 pm
A nice reminder of how bitwise manipulation and checking work!
December 17, 2019 at 6:07 am
I don't understand. When I answered this question and selected "syntax error" I was notified that my answer was incorrect and the correct answer was "execution error" instead. Now the...
November 11, 2019 at 6:48 am
It's been a while since I've worked on SQL 2000 so I'm a bit rusty on what's allowable and what's not. I also realized that I couldn't set my 2017...
October 8, 2019 at 3:17 pm
damn, that scuppers that idea then.
as i have a problem that this might have been a solution for.
I believe that there is a solution. I'll need a bit of...
October 8, 2019 at 2:39 pm
I totally agree that what the standards are defined as are not nearly as important as following them. Consistency is King!! We'll, that and good documentation.
October 7, 2019 at 12:31 pm
Bugger, I didn't notice that it was a multiple answer question!
September 23, 2019 at 2:47 pm
The "correlation" is that for every row in Table A, something (Action A) will be done with it (more like an OUTER APPLY because of the "every row" comment). ...
August 30, 2019 at 2:45 pm
Just for giggles and grins today, I wrote a version of Jonathan's function that is similar but does not use the CROSS JOIN nor the IIF/CASE statements:
CREATE...
August 30, 2019 at 4:46 am
IMHO, the closest thing to a CROSS APPLY is a "Correlated Sub-Query" with an implicit join, which can return more than one row per input row if you're not...
August 30, 2019 at 4:32 am
Personally, I would avoid recursive CTEs whenever possible. By using the Tally, it replaces the hidden loop that the recursive CTE performs with an efficient set-based manner. Take a look...
August 29, 2019 at 2:30 pm
It's true that the result is the same either way, however I prefer not to use the old method you have in your FROM statement of comma separated sources instead...
August 14, 2019 at 5:21 pm
I think it comes down to a balance between performance and management. Sure, your proposal to have a slew of functions to fit various criteria would work and would likely...
August 14, 2019 at 4:28 pm
No worries, Jeff. I also use the first one most primarily (99+%) with only a few use cases for the offset one. You got me to thinking about the UNION...
August 13, 2019 at 9:20 pm
Viewing 15 posts - 61 through 75 (of 379 total)