Przejdź do głównej treści

List Tickets Created on the Weekend

w części Example Reports
Lista autorów
Opublikowano: 22 maj 2018|Ostatnio Aktualizowano: 3 lis 2022

Requirement: create a report that lists all the titles of all tickets created on a weekend, using Eastern Standard Time.

This example uses the SQL WEEKDAY function.

Note the use of + INTERVAL 5 HOUR to adjust the time zone from UTC to EST.

SELECT tickets.subject FROM tickets WHERE WEEKDAY(tickets.date_created + INTERVAL 5 HOUR) IN (5,6)
copy
PrzydatneNieprzydatne
następna stronaLinks to all Tickets each Agent resolved Last Month
poprzednia stronaExporting User Data

Zaloguj lub zarejestruj się, by złożyć komentarz.