I get my data from at mysql database like this:
SELECT * FROM
In the database I to count fields CountL and CountP.
Now I need to add the two as CountAll and I have tried with :
SELECT (CountL+CountP) as CountAll FROM
But that doesn't seem to work.
So how do I do that ?
And if I get it to work, how do I then get all the other data from the database with having to write them all in the query. I did this with a * but can I use that along with an AS statement. ?
best
Michael
www.festfagbogen.dk