Submit social housing lettings and sales data (CORE)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 lines
426 B

SELECT
lettings_logs.id,
status,
lettings_logs.created_at,
tenancycode,
propcode,
created_by_id,
owning_organisation_id,
managing_organisation_id,
'lettings' as log_type
FROM lettings_logs
UNION
SELECT
sales_logs.id,
status,
sales_logs.created_at,
null as tenancycode,
null as propcode,
created_by_id,
owning_organisation_id,
managing_organisation_id,
'sales' as log_type
FROM sales_logs