T
|
thesofa 1/12/2007 |
you answered this yourself in THIS post not so long ago, I think you may need to remove the brackets and check that the field types are the same in the database. select `a`,
|
![]() |
Sergey Kornilov admin 1/12/2007 |
In MySQL use backticks to wrap field names: `Adoption_Fee_1` + `Adoption_Fee_2` + `Adoption_Fee_3` AS `Total Adoption Fee` |
L
|
larsonsc author 1/12/2007 |
As it turns out it is related to two of the monetary fields being set to "NULL". I edited the fields to "NOT NULL" and created a default value of 0.00 for the fields that are not required to be filled (since we don't always have 3 forms of payment for an adoption). The addition is working fine now. |
T
|
thesofa 1/12/2007 |
It has caught me out loads of times. |
D
|
Dale 1/12/2007 |
Just a thought. I found it easiest to control everything from one place. So I make all my fields defined as Null. |