I have this query in MySql and I was wondering, will it be ok in postgresql? I am wondering whether it should be something i need to change :)
I am mostly concerned with the group by function that shouldn't be possible to perform in post.
I am willing to consider the possibility to migrate to postgres and I would like to know if the current query i use will do the work!
Thanks for you help in advance, vinc
SELECT
#GROUP BY
dc.region as Region
,(DATEDIFF(CURRENT_TIMESTAMP,cc.activated_at)) AS 'Listing Age'
,cc.sku AS SKU
,CONCAT(dc.venture_url,cc.urlkey_details) as URL
, cc.status 'Listing Status'
# REGION
, region.name_en Region
,(CASE WHEN is_agent=1 THEN supplier.name ELSE concat(supplier.name, ' (private)') END) AS Agent
# Car type
, ct.label_en as 'Vehicle Type'
,(Case
WHEN cc.fk_catalog_attribute_option_global_condition=1 THEN 'New'
ELSE 'Other' END) AS 'Condition'
, ca.name_en as Brand
FROM
catalog_product_visible cpv
join catalog_config cc on cc.country_id = cpv.country_id and cc.id_catalog_config = cpv.fk_catalog_config
left join
dwh_country dc on dc.country_id = cc.country_id
JOIN supplier AS supplier ON supplier.country_id = cc.country_id AND supplier.id_supplier = cc.product_owner
LEFT JOIN
(SELECT
profile_isocode,
date_format(report_date,'%x-%v') as date,
sum(coalesce((case when event_action IN ('Email Lead Success', 'Contact Submit Sucess') OR event_category = 'Email Lead Success' then total_events end),0)) as EmailLead,
sum(coalesce((case when event_action IN ('Phone Lead Success', 'Show number Top', 'Show number Bottom', 'Show number Agency') OR event_category IN ('Phone Lead Success') then total_events end),0)) as PhoneLead,
sum(coalesce((case when event_category IN ('SMS Lead Success') then total_events end),0)) as SMSLead
FROM dwh_eventlistings c
WHERE (event_action in ('Contact Submit Sucess')
GROUP BY 1,2,3,4,5,6) AS leads ON leads.profile_isocode = pv.profile_isocode AND leads.listing_id = pv.listing_id AND leads.date = date_format(pv.report_date,'%x-%v')
LEFT JOIN catalog_simple AS cs ON cs.fk_catalog_config = cc.id_catalog_config AND cs.country_id = cc.country_id
WHERE supplier.name not like '%test%' and URL not like '%test%'
GROUP BY
country, sku, report_week, source, medium, campaign