Riaz Virani
04/12/2024, 3:43 PMWITH CteCustomer
AS (SELECT c.id AS customer_id
FROM customer c
WHERE c.id = 'XXXXXXXX'),
CteInvoiceKeys
AS (SELECT trx.id AS transaction_id
FROM TRANSACTION trx
INNER JOIN CteCustomer ctec ON trx.entity = ctec.customer_id)
SELECT CteCustomer.customer_id, CteInvoiceKeys.transaction_id
FROM CteCustomer
INNER JOIN CteInvoiceKeys
ON CteCustomer.customer_id = CteInvoiceKeys.entity;
Stephanie Hughes
04/15/2024, 12:47 PMRiaz Virani
04/15/2024, 12:48 PMRiaz Virani
04/15/2024, 12:49 PMWHERE
clauses multiple times. It does seem to resolve the issue. Guess we'll have to patch fix today in productionStephanie Hughes
04/15/2024, 12:49 PMStephanie Hughes
04/15/2024, 12:50 PMRiaz Virani
04/15/2024, 12:50 PMRiaz Virani
04/15/2024, 12:50 PMStephanie Hughes
04/15/2024, 12:53 PMRiaz Virani
04/15/2024, 12:57 PMShai Coleman
04/15/2024, 2:25 PMSELECT DISTINCT lastmodifieddate FROM currencyrate
Stephanie Hughes
04/15/2024, 2:26 PMShai Coleman
04/15/2024, 2:28 PMRiaz Virani
04/15/2024, 2:29 PMStephanie Hughes
04/15/2024, 2:36 PMRiaz Virani
04/15/2024, 3:45 PMStephanie Hughes
04/15/2024, 3:54 PMRiaz Virani
04/15/2024, 4:06 PMMichelle Beutler
04/15/2024, 4:24 PMStephanie Hughes
04/15/2024, 6:05 PMMichelle Beutler
04/15/2024, 6:36 PMPaul_s
04/16/2024, 9:27 AMStephanie Hughes
04/16/2024, 1:17 PMStephanie Hughes
04/16/2024, 1:53 PMPaul_s
04/16/2024, 2:06 PMPaul_s
04/16/2024, 2:06 PM