mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-06 21:34:28 -05:00
18 lines
388 B
SQL
18 lines
388 B
SQL
select
|
|
"CalendarEvent"."id",
|
|
"CalendarEvent"."name",
|
|
(
|
|
select
|
|
max("startTime")
|
|
from
|
|
"CalendarEventDate"
|
|
where
|
|
"eventId" = "CalendarEvent"."id"
|
|
) as "startTime"
|
|
from
|
|
"CalendarEvent"
|
|
where
|
|
"CalendarEvent"."authorId" = @authorId
|
|
and "startTime" > @lowerLimitTime
|
|
and "startTime" < @upperLimitTime
|
|
and "CalendarEvent"."participantCount" is null |