I have a stored procedure which executes a select statement. I would like my results ordered by a date field and display all records with NULL dates first and then the most
try
SELECT a,b,c,[Submission Date] FROM someView ORDER BY isnull([Submission Date],cast('2079/01/01' as datetime)) ASC