A
Anne
Hello! I have the following SQL code:
SELECT AgtFirstName + ' ' + AgtLastName + ' has a projected income of ' +
CAST(Salary + (50000 * CommissionRate) AS CHARACTER)
AS ProjectedIncome
FROM Agents;
When I run it, I get the following message: Syntax Error(Missing Operator)
in query expression...
What am I doing wrong? Any help would be appreciated.
Thanks
SELECT AgtFirstName + ' ' + AgtLastName + ' has a projected income of ' +
CAST(Salary + (50000 * CommissionRate) AS CHARACTER)
AS ProjectedIncome
FROM Agents;
When I run it, I get the following message: Syntax Error(Missing Operator)
in query expression...
What am I doing wrong? Any help would be appreciated.
Thanks