Hi All,
I'm trying to concatenate one field with another and it's not working.
Here's an example of my statement.
SELECT customer.job_name || customer.cust_cd, balances.bal_name, sum (cust_ar.balance)
FROM customer, balances, cust_ar
I'm using the Pipe symbol (||)
ans as you can see I have a Sum in my select statement, so I need a group by clause. When I add it, I'm not able to get the results of my query.
I tried different things and It dosen't work.
Do you have any idea what could be the appropriate syntax for the group by clause.
Thanks
Ed
I'm trying to concatenate one field with another and it's not working.
Here's an example of my statement.
SELECT customer.job_name || customer.cust_cd, balances.bal_name, sum (cust_ar.balance)
FROM customer, balances, cust_ar
I'm using the Pipe symbol (||)
ans as you can see I have a Sum in my select statement, so I need a group by clause. When I add it, I'm not able to get the results of my query.
I tried different things and It dosen't work.
Do you have any idea what could be the appropriate syntax for the group by clause.
Thanks
Ed