Viewing post 1 (of 1 total)
Here is my stored procedure code:
WITH EmployeeCTE
AS
(
SELECT
UID, firstname, lastname,
1 AS Level,
CONVERT(VARBINARY(MAX), UID) AS thePath
FROM tblUsers
WHERE MID = 604
UNION ALL
...
February 27, 2009 at 8:39 am
#951218