mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-08-01 00:24:13 -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
|
|
)
|