Viewing 5 posts - 1 through 5 (of 5 total)
hi jeff
My reasons ..
1) For small amounts of data
2) something different
3) easy to understand .. how to code ...
February 4, 2019 at 11:56 pm
HI
THIS IS A DIFFERENT WAY OF DOING THIS
EXPERTS CORRECT ME IF I AM MISSING ANYTHING
🙂
🙂
DROP TABLE EMP_CLIENT
GO
CREATE TABLE EMP_CLIENT(
ID INT NOT NULL,
NAME...
February 3, 2019 at 6:25 am
hi
A DIFFERENT WAY OF DOING THIS .....
HOPE IT HELPS
🙂
🙂
drop TABLE SampleTable
go
CREATE TABLE SampleTable(
Id int,
Diagnosis1 int,
Diagnosis2 int,
...
February 3, 2019 at 3:35 am
HI
ANOTHER WAY OF RESOLVING THIS
USING RECURSIVE CTE
-- GENERALLY RECURSIVE CTE IS NOT GOOD FOR PERFORMANCE
IF IT HELPS GREAT
🙂
🙂
DROP TABLE #SampleData
go
CREATE...
February 2, 2019 at 4:48 am
Viewing 5 posts - 1 through 5 (of 5 total)