php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #18634 Pear DB query w/ sql's MAX() Returns wrong array handles
Submitted: 2002-07-30 00:34 UTC Modified: 2002-08-01 11:48 UTC
From: starr at evilemail dot com Assigned:
Status: Not a bug Package: PEAR related
PHP Version: 4.2.2 OS: NT 4
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
36 - 19 = ?
Subscribe to this entry?

 
 [2002-07-30 00:34 UTC] starr at evilemail dot com
...Pear DB / Mysql / $db is a pear db object

Using a mysql query w/ MIN() --- i.e. the following

$sql = "SELECT MIN(time) from mytable";	
$time = $db->getAll( $sql, DB_FETCHMODE_ASSOC  );

Returns a value in

$time[0]['MIN(time)'];

NOT in

$time[0]['time'];

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-08-01 11:48 UTC] cox@php.net
Use proper SQL column aliases instead ("SELECT min() as min..").


Tomas V.V.Cox
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed Apr 24 23:01:34 2024 UTC