SELECT TOP (100) PERCENT ReportID, Name, Category, DrillThroughReportID
FROM dbo.v_Report
WHERE (NOT (DrillThroughReportID IS NULL))
ORDER BY ReportID
SELECT TOP (100) PERCENT ReportID, Name, Category, DrillThroughReportID
FROM dbo.v_Report
WHERE (NOT (DrillThroughReportID IS NULL))
ORDER BY ReportID