![]() |
|
|
|||||||
![]() |
|
|
Thread Tools | Rate Thread |
|
|
PM User | #1 |
|
New Coder ![]() Join Date: Jan 2005
Posts: 38
Thanks: 0
Thanked 0 Times in 0 Posts
![]() |
Is it possible to sum the values of multiple fields on a single SQL record?
I have fields for Goals and Assists.
I want to take those 2 fields and sum them to make a 3rd field PTS, then send them to variable in my PHP code to be printed to the screen. My statement is this: SELECT player_stats.G, player_stats.A, SUM (player_stats.G + player_stats.A) PTS FROM player_stats WHERE player_stats.PID =10 AND player_stats.season =1 The statement breaks with the bolded part. |
|
|
|
|
|
PM User | #2 |
|
Master Coder ![]() ![]() Join Date: Jul 2002
Posts: 6,589
Thanks: 0
Thanked 0 Times in 0 Posts
![]() |
SELECT player_stats.G, player_stats.A, (player_stats.G + player_stats.A) AS PTS
FROM player_stats WHERE player_stats.PID =10 AND player_stats.season =1
__________________
Posting guidelines I use to see if I will spend time to answer your question : http://www.catb.org/~esr/faqs/smart-questions.html |
|
|
|
|
|
PM User | #4 |
|
Master Coder ![]() ![]() Join Date: Jul 2002
Posts: 6,589
Thanks: 0
Thanked 0 Times in 0 Posts
![]() |
You're welcome
__________________
Posting guidelines I use to see if I will spend time to answer your question : http://www.catb.org/~esr/faqs/smart-questions.html |
|
|
|
|
|
PM User | #5 |
|
New to the CF scene Join Date: Mar 2005
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
![]() |
Sort by the new variable in table display
If you have the display set up in a table with three columns, player_stats.G and player_stats.A and PTS you can sort by the first two fields using <a href='PageName.asp?sort=FieldName'>. How would you sort by the new variable?
|
|
|
|
|
|
PM User | #6 |
|
Regular Coder ![]() Join Date: Oct 2002
Posts: 379
Thanks: 0
Thanked 0 Times in 0 Posts
![]() |
SELECT player_stats.G, player_stats.A, (player_stats.G + player_stats.A) AS PTS
FROM player_stats WHERE player_stats.PID =10 AND player_stats.season =1 ORDER BY PTS
__________________
Strategy Conscious |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Rate This Thread | |
|
|