mirror of
https://github.com/zitadel/zitadel.git
synced 2025-11-16 14:13:38 +00:00
12 lines
200 B
MySQL
12 lines
200 B
MySQL
|
|
SELECT
|
||
|
|
aggregate_id
|
||
|
|
, aggregate_type
|
||
|
|
, "sequence"
|
||
|
|
, event_date
|
||
|
|
, "position"
|
||
|
|
FROM
|
||
|
|
projections.current_states
|
||
|
|
WHERE
|
||
|
|
instance_id = $1
|
||
|
|
AND projection_name = $2
|
||
|
|
FOR UPDATE;
|