Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this query to return the number of visitors between 2 dates.

$SQLVisit = "SELECT     
            count(score) as counts,
            date FROM persons  
            WHERE date > '".$_SESSION['data1']."' AND date < '".$_SESSION['data2]."' 
            GROUP BY date 
            ORDER BY date asc"; 

$result = mysql_query($SQLVisit);   
$num = mysql_num_rows($result); 

these visitors, some are male and others female.

I already have an array that puts me the number of visits and the corresponding date. Like this: ['2012-1-1 ', 50]. My idea was to have an array that would keep the date, the number of visits, the number of males and number of females. Like this: ['2012-1-1 ', 50, 35.15].

Any idea? ps: Im using PHP.

edit: code for array

$data[0] = array('day','counts');       
    for ($i=1; $i<($num+1); $i++)
    {
        $data[$i] = array(substr(mysql_result($result, $i-1, "date"), 0, 20),
            (int) mysql_result($result, $i-1, "counts"),);
    }   
    echo json_encode($data);

edit2: Yes i have a gender (int) column , 1 for male and 2 for female

share|improve this question
Do you have a gender column in your table? – Mahmoud Gamal Nov 20 '12 at 14:10
Where is the gender stored? Is there an extra field in your database? – Jens Nov 20 '12 at 14:11
Yes i have a gender (int) column , 1 for male and 2 for female – skdnewbie Nov 20 '12 at 14:11

3 Answers

up vote 1 down vote accepted

if you have gender column, try

$SQLVisit = "SELECT  date, gender,   
                     count(score) as counts,
            FROM  persons  
            WHERE date > '".$_SESSION['data1']."' AND date < '".$_SESSION['data2]."' 
            GROUP BY date, gender 
            ORDER BY date asc"; 

and if you want to format the gender that instead of number, you want to display it as male or female

$SQLVisit = "SELECT  date, 
                     IF(gender = 1, 'Male', 'Female') gender,   
                     count(score) as counts,
            FROM  persons  
            WHERE date > '".$_SESSION['data1']."' AND date < '".$_SESSION['data2]."' 
            GROUP BY date, gender 
            ORDER BY date asc"; 

if you also also want to have format like this,

date    Male      Female
===========================
'date'     5          6

use the following query

SELECT  DATE,
        SUM(CASE WHEN gender = 1 then 1 ELSE 0 END) Male,
        SUM(CASE WHEN gender = 2 then 1 ELSE 0 END) Female
FROM    person
-- WHERE clause
GROUP BY DATE
-- ORDER clause

your query is vulnerable with SQL Injection, please read the article below

share|improve this answer
Yes i have a gender (int) column , with only two kinf of data: 1 for male and 2 for female. That didnt work, because i need to work out with array – skdnewbie Nov 20 '12 at 14:14
Thanks for advice – skdnewbie Nov 20 '12 at 14:15
@skdnewbie see my updated answer :D – JW 웃 Nov 20 '12 at 14:21
Thanks, but could you help me with array too? :) – skdnewbie Nov 20 '12 at 14:26
1  
OMG you solved it! :D – skdnewbie Nov 20 '12 at 14:45
show 6 more comments

You can use SUM(IF()):

$SQLVisit = "SELECT     
            count(score) as counts,
            SUM(IF(gender=1,1,0)) as male,
            SUM(IF(gender=2,1,0)) as female,
            date FROM persons  
            WHERE date > '".$_SESSION['data1']."' AND date < '".$_SESSION['data2]."' 
            GROUP BY date 
            ORDER BY date asc"; 
share|improve this answer
what means (gender=1,1,0) and (gender=2,1,0) ? – skdnewbie Nov 20 '12 at 14:16
@skdnewbie It's just a shorthand if statement. If gender is 1, then TRUE (1) otherwise FALSE (0). – wesside Nov 20 '12 at 14:18
The IF is important ;) IF(gender=1,1,0) returns 1 if gender is 1 else 0. This is calculated for each row and summed using SUM. – Jens Nov 20 '12 at 14:18

You can do this:

SELECT     
  SUM(CASE WHEN Gender = 1 THEN 1 ELSE 0) malescounts,
  SUM(CASE WHEN Gender = 2 THEN 1 ELSE 0) femalescounts,
  count(score) as counts
FROM persons  
WHERE date > ...
GROUP BY date;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.