Webmaster Forums - Webmaster forum for HTML, PHP, ASP, CSS and more

Go Back   Webmaster Forums - Webmaster forum for HTML, PHP, ASP, CSS and more > Web Programming > Databases - MySQL, SQL, Oracle, Access and others
User Name
Password

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old 12-12-2005, 01:58 AM   #1 (permalink)
airoid
Junior Member
 
Join Date: Dec 2005
Posts: 2
Default Adding Selected Fields

I have a table in mysql with a "titles" column filled with a number and a "userid" column filled with the User ID. I am trying to add the values of all of the "titles" columns for a specific User ID. For example:

userid titles
104 2
125 1
104 5
182 3

I want to add the number of "titles" for userid 104. The output would be 7 (2+5). How would I do this?
airoid is offline   Reply With Quote
Sponsored Links
Old 12-15-2005, 06:13 PM   #2 (permalink)
kayla
Member
 
Join Date: Jun 2005
Location: Tampa, Fla
Posts: 37
Default

Hi there;

Give this a try:
PHP Code:
<? $db mysql_connect('localhost''username''password'); 

mysql_select_db('database_name'); 

$query 'select * from this_table'
$query2 'select SUM(titles) AS qsum from this_table'
$result mysql_query($query); 
$result2 mysql_query($query2); 
$num mysql_num_rows($result); 

$row mysql_fetch_array($result2); 

// echo '<strong>'.$num.'</strong>'; 

echo '<p>Here are your results: '

echo 
'<strong>'.$row['qsum'].'</strong>'?>

hope it works for you
kayla is offline   Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Points Per Thread View: 1.00
Points Per Thread: 11.00
Points Per Reply: 5.00



» Sponsors

» Links

» Affiliates
Web Hosting
Online Backup Reviews
Marketing Find
Merchant Select
SiteMap Builder
Host Compare
Dedicated Servers

» Links

» Sports Network
Paintball Forum
Football Forum
Hockey Forum
Golf Forum
Boxing Forum
Lacrosse Forum
Baseball Forum
SnowBoarding Forum
Soccer Forum
MMA Forum


All times are GMT -4. The time now is 11:30 AM.



LinkBacks Enabled by vBSEO 3.0.0 RC8
Webmaster Forums