mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-10 12:44:47 -05:00
11 lines
161 B
SQL
11 lines
161 B
SQL
select
|
|
count(*) as "count"
|
|
from
|
|
"Build"
|
|
where
|
|
"Build"."ownerId" = @userId
|
|
and (
|
|
"Build"."private" = 0
|
|
or "Build"."ownerId" = @loggedInUserId
|
|
)
|