Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
declare @Today datetime
set @Today = dateadd(day,datediff(day,'19000101',CURRENT_TIMESTAMP),'19000101')
;with TodayData as (select Matter_Descrip
from Matter where [Date] >= @Today),
select M.* from Matter M
INNER JOIN TodayData ON M.Matter_Descrip = TodayData.Matter_Descrip
WHERE M.[Date] < @Today