Jump to content

[SOLVED] Syntax error?


Skipjackrick

Recommended Posts

I can't figure this one out?  Does anything scream out at you guys?

 

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SUM(IF(species_id=1,1,0)) AS speciesA, SUM(IF(angler=1' at line 3

 

 

$query_speciestotals = "SELECT
                         angler, species_id, yyyy
                         SUM(IF(species_id=1,1,0)) AS speciesA,
                         SUM(IF(angler=1,1,0)) AS species_total
                         FROM submit
                         WHERE angler=1
                         GROUP BY species_id AND yyyy
                         ORDER BY yyyy";

$speciestotals = mysql_query($query_speciestotals) or die(mysql_error());

while($row = mysql_fetch_array($speciestotals))
{
$yyyy = $row['yyyy'];
$speciesA = $row['speciesA'];
$species_total = $row['species_total'];

$species_totals_row .=<<<EOD
<tr>
	<td align='center'>$yyyy</td>
	<td align='center'>$speciesA</td>
	<td align='center'>$species_total</td>
</tr>

EOD;
}

Link to comment
Share on other sites

I know this is against the rules to put a post to the top but i can't edit the post.

 

i forgot to add that the above code is inside a switch statement.  i think that's part of it.

 

$queryspecies = "SELECT 
         *
         FROM submit
         WHERE angler=$angler_id
         GROUP BY species_id";
$resultspecies = mysql_query($queryspecies) or die(mysql_error());

// get count of how many rows
$rowCount = mysql_num_rows($resultspecies);

// let's get the results into an array
while($row = mysql_fetch_assoc($resultspecies))
   $results[] = $row;

switch($rowCount) {
   case 1:
$query_speciestotals = "SELECT
                         angler, species_id, yyyy
                         SUM(IF(species_id=1,1,0)) AS speciesA,
                         SUM(IF(angler=1,1,0)) AS species_total
                         FROM submit
                         WHERE angler=1
                         GROUP BY species_id AND yyyy
                         ORDER BY yyyy";

$speciestotals = mysql_query($query_speciestotals) or die(mysql_error());

while($row = mysql_fetch_array($speciestotals))
{



$yyyy = $row['yyyy'];



$speciesA = $row['speciesA'];



$species_total = $row['species_total'];



$species_totals_row .=<<<EOD



<tr>





<td align='center'>$yyyy</td>





<td align='center'>$speciesA</td>





<td align='center'>$species_total</td>



</tr>




EOD;
}
more code past this irrelevant

Link to comment
Share on other sites

Oops - misread your question, sorry.

 

ignore the below.

 

You could try adding '{ }' around $angler_id in your sql

 

$queryspecies = "SELECT 
         *
         FROM submit
         WHERE angler='{$angler_id}'
         GROUP BY species_id";

Link to comment
Share on other sites

Oops - misread your question, sorry.

 

ignore the below.

 

You could try adding '{ }' around $angler_id in your sql

 

$queryspecies = "SELECT 
         *
         FROM submit
         WHERE angler='{$angler_id}'
         GROUP BY species_id";

 

Nah, its not that...

 

It has something to do with the switch statement I think.

 

switch($rowCount) {
   case 1:
$query_speciestotals = "SELECT
                         angler, species_id, yyyy
                         SUM(IF(species_id=1,1,0)) AS speciesA,
                         SUM(IF(angler=1,1,0)) AS species_total
                         FROM submit
                         WHERE angler=1
                         GROUP BY species_id AND yyyy
                         ORDER BY yyyy";

$speciestotals = mysql_query($query_speciestotals) or die(mysql_error());

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.