Hello, World!
1. Hierarchical tree formatting SELECT using CTE (MS SQL 2005)
Say you have some table with hierarchical tree structure (departments on example) and you need to output it in CheckBoxList or in Lable this way:
Main Department
Department 1
Department 2
SubDepartment 1
Department 3
Then you can use such query:
WITH Hierarchy(DepartmentID, Name, ParentID, Indent, Type) AS
(
-- First we will take the highest Department (Type = 1)
SELECT DepartmentID, Name, ParentID,
-- We will need this field for correct sorting
Name + CONVERT(VARCHAR(MAX), DepartmentID) AS Indent,
1 AS Type
FROM Departments WHERE Type = 1
UNION ALL
-- Now we will take the other records in recursion
SELECT SubDepartment.DepartmentID, SubDepartment.Name,
SubDepartment.ParentID,
CONVERT(VARCHAR(MAX), Indent) + SubDepartment.Name + CONVERT(VARCHAR(MAX),
SubDepartment.DepartmentID) AS Indent, ParentDepartment.Type + 1
FROM Departments SubDepartment
INNER JOIN Hierarchy ParentDepartment ON
SubDepartment.ParentID = ParentDepartment.DepartmentID
)
-- Final select
SELECT DepartmentID,
-- Now we need to put some spaces (or any other symbols) to make it
-- look-like hierarchy
REPLICATE(' ', Type - 1) + Name AS DepartmentName, ParentID, Indent
FROM Hierarchy
UNION
-- Default value
SELECT -1 AS DepartmentID, 'None' AS DepartmentName, -2, ' ' AS Indent
-- Important to sort by this field to preserve correct Parent-Child hierarchy
ORDER BY Indent ASC
Other samples
Using stored procedure:
http://vyaskn.tripod.com/hierarchies_in_sql_server_databases.htm
Plain select for limited nesting level:
http://www.sqlteam.com/article/more-trees-hierarchies-in-sql
Another one solution using CTE:
http://www.sqlusa.com/bestpractices2005/executiveorgchart/
2. Last Date selection with grouping - using RANK() OVER
Imagine some Events table with ID, User, Date and Description columns. You need to select all last Events for each User. There is no guarantee that Event with higher ID has nearest Date.
What you can do is play around with INNER SELECT, MAX, GROUPING like this:
SELECT E.UserName, E.Description, E.Date
FROM Events E
INNER JOIN
(
SELECT UserName, MAX(Date) AS MaxDate FROM Events
GROUP BY UserName
) AS EG ON E.Date = EG.MaxDate
But I prefer use RANK OVER:
SELECT EG.UserName, EG.Description, EG.Date FROM
(
SELECT RANK() OVER(PARTITION BY UserName ORDER BY Date DESC) AS N,
E.UserName, E.Description, E.Date
FROM Events E
) AS EG
WHERE EG.N = 1
It's more complicated, but it seems to be more correct for me.
3. Paging using TOP and NOT IN
There is already paging here, but I just can't forget this great experience:
DECLARE @RowNumber INT, @RecordsPerPage INT, @PageNumber INT
SELECT @RecordsPerPage = 6, @PageNumber = 7
SELECT TOP(@RecordsPerPage) * FROM [TableName]
WHERE ID NOT IN
(
SELECT TOP((@PageNumber-1)*@RecordsPerPage) ID
FROM [TableName]
ORDER BY Date ASC
)
ORDER BY Date ASC
4. Set variable values in dynamic SQL with REPLACE
Instead of ugly
SET @SELECT_SQL = 'SELECT * FROM [TableName]
WHERE Date < ' + CAST(@Date, VARCHAR) + ' AND Flag = ' + @Flag
It's more easy, safe and readable to use REPLACE:
DECLARE