Viewing 4 posts - 1 through 4 (of 4 total)
Hi thanks for the article.
What Windows & SQL Server version were you using?
January 3, 2019 at 2:39 am
While it won't change the functionality of anything consider altering
SELECT e1.n FROM e1, e1 x
to
SELECT e1.n
FROM e1
CROSS JOIN e1 x
As this makes it more clear a Cartesian join...
May 5, 2014 at 9:03 am
The best way to avoid any bugs is to not write any code...
Be careful what you incentivise.
April 30, 2012 at 5:13 am
I tend to roll-my-own when it comes to Hierarchies.
Here's how I do it.
Say I have a list of Employees with a Key on ID
I then make a Employee_Hierarchy table then...
March 19, 2010 at 6:41 am
Viewing 4 posts - 1 through 4 (of 4 total)