Eric
07-03-2001, 02:51 PM
I've got an SQL statement that is structured like this:
SELECT *, SUM([Score1]+[Score2]+[Score3]+[Score4]) AS Total
FROM buickclassic_pro
ORDER BY Total DESC;
For some reason, it keeps giving me an SQL error at line 1. This is exactly how MS Access structures the SQL statement as well, so is there something that MySQL doesn't like about it or what? Thanks a ton!
SELECT *, SUM([Score1]+[Score2]+[Score3]+[Score4]) AS Total
FROM buickclassic_pro
ORDER BY Total DESC;
For some reason, it keeps giving me an SQL error at line 1. This is exactly how MS Access structures the SQL statement as well, so is there something that MySQL doesn't like about it or what? Thanks a ton!