php: wie man String-Daten in numerische Daten umwandelt

können Sie sagen, wie Sie dieses Ergebnis in PHP und MySQL-Skript ändern:

  Model                  Class
Ball                        S
Book                        A
Spoon
Plate                       B
Box                         C

dies ist meine DB:

CREATE TABLE IF NOT EXISTS `inspection_report` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `Model` varchar(14) NOT NULL,
  `Serial_number` varchar(8) NOT NULL,
  `Lot_no` varchar(6) NOT NULL,
  `Line` char(5) NOT NULL,      
  `Class` char(1) NOT NULL,
  `Status` varchar(6) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `Model` (`Model`,`Serial_number`,`Lot_no`,`Line`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=48 ;

how wenn ich das Ergebnis zeigen möchte wie:

 Model           s       a       b       c
 Ball            1       0       0       0
 Book            0       1       0       0
 Spoon           0       0       0       0
 Plate           0       0       1       0
 Box             0       0       0       1

Was fragt man dazu ab? Vielen Dank

Antworten auf die Frage(6)

Ihre Antwort auf die Frage