The email validation is actually broken lol
This commit is contained in:
@@ -31,4 +31,21 @@ select res.created_at, con.reservation_date, res.start_date, room.arrival_date,r
|
||||
order by reservation_date;
|
||||
|
||||
|
||||
```
|
||||
|
||||
```
|
||||
select round(sum(room.total_revenue::numeric)::numeric, 3), con.advertising_medium
|
||||
|
||||
from alpinebits.conversions as con
|
||||
join alpinebits.room_reservations as room on room.conversion_id = con.id
|
||||
|
||||
|
||||
|
||||
|
||||
where room.total_revenue is not null
|
||||
and con.reservation_date > '2025-01-01'
|
||||
group by con.advertising_medium
|
||||
;
|
||||
|
||||
|
||||
```
|
||||
Reference in New Issue
Block a user