如何在 mysql 中将 ot_total 和 ot_shipping 放入一行?
我想从 ot 表收取每个订单的费用。我怎样才能在mysql中得到这个表呢?
非常感谢您。
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `ot`
-- ----------------------------
DROP TABLE IF EXISTS `ot`;
CREATE TABLE `ot` (
`id` int(10) NOT NULL auto_increment,
`orders_id` int(10) default NULL,
`class` varchar(30) default NULL,
`value` float(30,0) default NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of ot
-- ----------------------------
INSERT INTO `ot` VALUES ('1', '1', 'ot_shipping', '10');
INSERT INTO `ot` VALUES ('2', '1', 'ot_total', '100');
INSERT INTO `ot` VALUES ('3', '1', 'ot_insurance', '1');
INSERT INTO `ot` VALUES ('4', '2', 'ot_shipping', '10');
INSERT INTO `ot` VALUES ('5', '2', 'ot_total', '80');