Maybe something like this?WITH Data (col1, col2, col3, Docket_date) AS
(
SELECT col1, col2, col3, Docket_date FROM dbo.DocketTB ORDER BY Docket_Date DESC
UNION ALL
SELECT col1, col2, col3, Date_Raised FROM dbo.WorkshopTB ORDER BY Date_Raised DESC
)
SELECT * FROM Data ORDER BY Docket_date
______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience