79702709

Date: 2025-07-15 22:12:16
Score: 2
Natty:
Report link

Things may have changed but I believe this is what works now, I included the transactionline table as well,

SELECT top 2

Transaction.entity,

Customer.id

from transaction

left join transactionline

on transaction.id=transactionline.transaction

left join customer

on transaction.entity = customer.id

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: RayJohn