Cvent's Event Management platform needs a quick operational view of the most recent event registrations. Write a PostgreSQL query that returns the top 50 registrations, where top means the newest registration timestamp.
| Column | Type | Description |
|---|---|---|
| registration_idPK | INTEGER | Unique registration identifier |
| attendee_name | VARCHAR(150) | Name of the registered attendee |
| event_name | VARCHAR(200) | Cvent event name |
| registration_status | VARCHAR(30) | Current registration status |
| registered_at | TIMESTAMPTZ | Timestamp when the registration was created |