G
garry111
Guest
I have two memo field in a table. I have to calcluate the sum of the two memo fileds. Here is my sql
Select sum (amt1+amt2) as tot from employee group by id;
I am getting error cannot have memo fields in aggregate function.
How do I convert the memo fields to numeric in sql query and caculate the sum.
Thanks.
Select sum (amt1+amt2) as tot from employee group by id;
I am getting error cannot have memo fields in aggregate function.
How do I convert the memo fields to numeric in sql query and caculate the sum.
Thanks.