Jump to content

[SOLVED] 'SELECT max(id),Title ... GROUP BY' screwed up


tbare

Recommended Posts

hey... what gives here?

 

<?php
function fGetPreviousHumorFile($table,$id,$subCategory)
{
$query = "PREPARE GetFileList0 FROM 'SELECT max(ID),Title FROM ".$table." WHERE ID < ".$id." AND SubCategory LIKE ".$subCategory." GROUP BY ID'"; $result = mysql_query($query) or die(mysql_error());
// execute the prepared statement for Item Insert
$query = "EXECUTE GetFileList0"; $result = mysql_query($query) or die(mysql_error());
// deallocate the prepared statement for Item Insert
$query = "DEALLOCATE PREPARE GetFileList0"; $resultDeallocate = mysql_query($query) or die(mysql_error());
$row = mysql_fetch_array ($result, MYSQL_BOTH);
return $row;
}



$previousFile = fGetPreviousHumorFile('HumorVideo','611','5');

print_r($previousFile);
?>

 

is returning the FIRST file in subcategory 5 (ID 321... should be 609)...

 

why?

 

additionally, if i GROUP BY Title, it returns ID 348.. (still not right...)

 

any ideas? i'm pulling my hair out on this... known bug or am i doing something wrong?

Link to comment
Share on other sites

fixed... changed my GROUP BY ID (or Title) to SubCategory...

 

not sure why the others didn't work, but this seems to clear it all up...

 

working code:

<?php
function fGetPreviousHumorFile($table,$id,$subCategory)
{
$query = "PREPARE GetFileList0 FROM 'SELECT max(ID),Title FROM ".$table." WHERE ID < ".$id." AND SubCategory LIKE ".$subCategory." GROUP BY SubCategory'"; $result = mysql_query($query) or die(mysql_error());
// execute the prepared statement for Item Insert
$query = "EXECUTE GetFileList0"; $result = mysql_query($query) or die(mysql_error());
// deallocate the prepared statement for Item Insert
$query = "DEALLOCATE PREPARE GetFileList0"; $resultDeallocate = mysql_query($query) or die(mysql_error());
$row = mysql_fetch_array ($result, MYSQL_BOTH);
return $row;
}

$previousFile = fGetPreviousHumorFile('HumorVideo','611','5');

print_r($previousFile);
?>

Link to comment
Share on other sites

hmm.. that sucks... is there a better to get a more than one column, then?

here's the setup:

 

table: HumorVideo

(relevant) cols: ID (int, auto increment), SubCategory (int), Title (VarChar)

 

basically, i want to get the previous and next files where 'SubCategory' is the same... any thoughts? the ID may or may not be the next one in line...

Link to comment
Share on other sites

really thing i got it this time:

 

<?php
function fGetPreviousHumorFile($table,$id,$subCategory)
{
$query = "PREPARE GetFileList0 FROM 'SELECT t.Title,t.ID FROM ".$table." t,(SELECT Title,max(ID) AS maxID FROM ".$table." WHERE ID < ".$id." AND SubCategory LIKE ".$subCategory." GROUP BY SubCategory) maxIDresult WHERE t.ID = maxIDresult.maxID'"; $result = mysql_query($query) or die(mysql_error());
// execute the prepared statement for Item Insert
$query = "EXECUTE GetFileList0"; $result = mysql_query($query) or die(mysql_error());
// deallocate the prepared statement for Item Insert
$query = "DEALLOCATE PREPARE GetFileList0"; $resultDeallocate = mysql_query($query) or die(mysql_error());
$row = mysql_fetch_array ($result, MYSQL_BOTH);
return $row;
}

function fGetNextHumorFile($table,$id,$subCategory)
{
$query = "PREPARE GetFileList0 FROM 'SELECT t.Title,t.ID FROM ".$table." t,(SELECT Title,min(ID) AS maxID FROM ".$table." WHERE ID > ".$id." AND SubCategory LIKE ".$subCategory." GROUP BY SubCategory) maxIDresult WHERE t.ID = maxIDresult.maxID'"; $result = mysql_query($query) or die(mysql_error());
// execute the prepared statement for Item Insert
$query = "EXECUTE GetFileList0"; $result = mysql_query($query) or die(mysql_error());
// deallocate the prepared statement for Item Insert
$query = "DEALLOCATE PREPARE GetFileList0"; $resultDeallocate = mysql_query($query) or die(mysql_error());
$row = mysql_fetch_array ($result, MYSQL_BOTH);
return $row;
}

$previousFile = fGetPreviousHumorFile('HumorVideo',$_GET['ID'],'5');

print_r($previousFile);
?>

seems to work as far as i can tell.. anybody see an issue with it?

 

I'll test some more then close this if it works 100%

Link to comment
Share on other sites

just as an update:

 

easier way than above:

<?php
function fGetPreviousHumorFile($table,$id,$subCategory)
{
$query = "PREPARE GetFileList0 FROM 'SELECT Title,ID FROM ".$table." WHERE ID LIKE (SELECT max(ID) AS maxID FROM ".$table." WHERE ID < ".$id." AND SubCategory LIKE ".$subCategory.")'"; $result = mysql_query($query) or die(mysql_error());
// execute the prepared statement for Item Insert
$query = "EXECUTE GetFileList0"; $result = mysql_query($query) or die(mysql_error());
// deallocate the prepared statement for Item Insert
$query = "DEALLOCATE PREPARE GetFileList0"; $resultDeallocate = mysql_query($query) or die(mysql_error());
$row = mysql_fetch_array ($result, MYSQL_BOTH);
return $row;
}
?>

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.