Files
UnrealEngineUWP/Engine/Source/Programs/CrashReporter/CrashReportWebSite/Models/Query-GetTodaysBuggs.sql

6 lines
120 B
MySQL
Raw Normal View History

use crashreport
SELECT *
from buggs
where [TimeOfFirstCrash] > CAST(GETDATE()-1 AS DATE)
order by TimeOfFirstCrash