1 つのクエリで助けが必要です。テーブルから製品またはバリエーションを取得するクエリが必要です。したがって、製品「a」、「b」 +製品「a1 」のバリエーションが必要な場合。ルックスはどのように照会されますか? テーブルから最後の製品 (ID: a) までの 3 つの製品を取得し、変更された値 (価格、重量、売上) に置き換える必要があります。
テーブルと行の例を次に示します。
products
------------------
CREATE TABLE IF NOT EXISTS `products` (
`id` varchar(10) NOT NULL,
`hidden` tinyint(1) NOT NULL,
`only_variations` int(1) NOT NULL DEFAULT '0',
`price` decimal(20,6) NOT NULL,
`weight_in_package` int(11) NOT NULL COMMENT 'mg',
`stock_pieces` int(11) NOT NULL,
`gifts` text NOT NULL,
`rating` int(11) NOT NULL,
`sold_pieces` int(11) NOT NULL,
`brand` int(11) NOT NULL,
`deleted` int(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `products` (`id`, `hidden`, `only_variations`, `price`, `weight_in_package`, `stock_pieces`, `gifts`, `rating`, `sold_pieces`, `brand`, `deleted`) VALUES
('a', 0, 0, 12.000000, 50, 10, '', 0, 35, 1, 0),
('b', 0, 0, 11.000000, 50, 15, '', 0, 22, 2, 0);
variations
------
CREATE TABLE IF NOT EXISTS `product_variations` (
`id` varchar(10) COLLATE utf8_bin NOT NULL,
`product` varchar(10) COLLATE utf8_bin NOT NULL,
`price` decimal(20,6) NOT NULL,
`stock_pieces` int(11) NOT NULL,
`weight` int(11) NOT NULL COMMENT 'mg',
`sales` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
INSERT INTO `product_variations` (`id`, `product`, `price`, `stock_pieces`, `weight`, `sales`) VALUES
('a1', 'a', 50.000000, 10, 0, 0),
('a2', 'a', 40.000000, 11, 0, 0);
そして、SQLクエリで必要なこの出力:
id | price | variation
a 12 NULL
b 11 NULL
a 50 a1
助けてくれてありがとう!