79235132

Date: 2024-11-28 19:33:47
Score: 1
Natty:
Report link
"""SELECT 
c.Customer_SSN_ID AS "Customer ID",
c.First_Name || ' ' || c.Last_Name AS "Customer Name",  -- Concatenate first and last name
c.Email,
ct.Account_Balance AS "Account Balance"

FROM customer c JOIN customer_transaction ct ON c.Customer_SSN_ID = ct.Customer_ID WHERE c.Customer_SSN_ID = 1; -- Specify the Customer ID to check details

Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Jony Deph