Stephen A. Cochran Lists wrote:

On Sep 27, 2005, at 2:58 AM, Jigal van Hemert wrote:

You are most likely to get meaningful suggestions to solve the mystery if you include the table definition (output of SHOW CREATE TABLE <tablename>) and the query.


mysql> SHOW CREATE TABLE Player|
| Player | CREATE TABLE `Player` (
  `id` int(16) NOT NULL auto_increment,
  `first_name` varchar(32) NOT NULL default '',
  `last_name` varchar(32) NOT NULL default '',
  `year` varchar(16) NOT NULL default '',
  `height` varchar(8) NOT NULL default '',
  `season` int(4) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  KEY `season` (`season`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 |

It now looks like mysql is returning the correct thing (at least on the command line), but for some reason inside php it's all screwedup

What column are you ordering on?

--
Jasper Bryant-Greene
Freelance web developer
http://jasper.bryant-greene.name/

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to