次の 2 つのクエリがあり、それらを store_id で結合して、特定の郵便番号ゾーンでデル製品を販売している店舗の数、店舗が開いているかどうか、この店舗のレビューの総数、平均評価を取得したいと考えています。レビュー
SELECT s.* , sh . * , d . * , pd . *,
CASE
When (holiday = "Y") THEN "Holiday"
END AS open_status
FROM delivery d, products_description pd, store s, store_hours sh
WHERE d.deliver_to_postcode =5140
AND d.store_id = pd.store_id
AND (pd.products_name like '%dell%' or pd.products_description like '%dell%')
AND pd.store_id = s.store_id
AND s.store_id = sh.store_id
AND sh.weekday = dayname( curdate( ) )
GROUP BY d.store_id'
'SELECT store_id, count( * ) AS reviews, avg( reviews_rating ) AS rating
FROM reviews
WHERE reviews_status =1'
Total stores | store_id | store_name | Postcode | reviews | rating | open_status
----------------------------------------------------------------------------------------------------------------------
2 | 1 | store 1 | 5140 | 3 | 2 star | Holiday
2 | 2 | store 2 | 5140 | 1 | 2 star | Holiday
これら 2 つのクエリを結合して上記の結果を得るにはどうすればよいですか?
DBテーブルを追加しました
Delivery
Store_id | postcode
--------------------------
1 | 5140
1 | 5200
2 | 5140
Product description
Store_id | product_name
------------------------
1 | pc dell
1 | pc ibm
2 | screen dell
Store
Store_id | Name
-------------------
1 | Store 1
2 | Store 2
Store hours
Store_id | Holiday
-------------------
1 | N
2 | N
Reviews
Store_id | Product | Review | review rating
------------------------------------------------
1 | 1 | review 1 | 3 star
1 | 1 | review 2 | 3 star
1 | 2 | review 1 | 3 star
2 | 1 | review 1 | 2 star
DB SQLを追加しました
--
-- テーブルのテーブル構造delivery
CREATE TABLE IF NOT EXISTS `delivery` (
`store_id` int(11) NOT NULL DEFAULT '1',
`deliver_to_postcode` int(11) NOT NULL,
PRIMARY KEY (`store_id`,`deliver_to_postcode`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- テーブルのテーブル構造products_description
CREATE TABLE IF NOT EXISTS `products_description` (
`store_id` int(11) NOT NULL DEFAULT '1',
`products_id` int(11) NOT NULL AUTO_INCREMENT,
`language_id` int(11) NOT NULL DEFAULT '1',
`products_name` varchar(255) NOT NULL DEFAULT '',
`products_short_description` text,
`products_description` text,
`products_keyword` varchar(64) DEFAULT NULL,
`products_tags` varchar(255) DEFAULT NULL,
`products_url` varchar(255) DEFAULT NULL,
`products_friendly_url` varchar(255) DEFAULT NULL,
`products_page_title` varchar(255) NOT NULL,
`products_meta_keywords` varchar(255) NOT NULL,
`products_meta_description` varchar(255) NOT NULL,
`products_viewed` int(5) DEFAULT '0',
PRIMARY KEY (`store_id`,`products_id`,`language_id`),
KEY `products_name` (`products_name`),
KEY `products_description_keyword` (`products_keyword`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=20 ;
--
-- テーブルのテーブル構造store
CREATE TABLE IF NOT EXISTS `store` (
`store_id` int(11) NOT NULL AUTO_INCREMENT,
`customer_id` int(11) NOT NULL DEFAULT '1',
`store_name` varchar(64) NOT NULL,
PRIMARY KEY (`store_id`),
KEY `customer_id` (`customer_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- テーブルのテーブル構造store_hours
CREATE TABLE IF NOT EXISTS `store_hours` (
`store_id` int(11) NOT NULL,
`weekday` varchar(10) NOT NULL,
`holiday` char(1) NOT NULL DEFAULT 'N',
KEY `store_id` (`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- テーブルのテーブル構造reviews
CREATE TABLE IF NOT EXISTS `reviews` (
`store_id` int(11) NOT NULL DEFAULT '1',
`reviews_id` int(11) NOT NULL AUTO_INCREMENT,
`products_id` int(11) NOT NULL,
`customers_id` int(11) DEFAULT NULL,
`reviews_rating` int(1) DEFAULT NULL,
`languages_id` int(11) NOT NULL,
`reviews_text` text NOT NULL,
`date_added` datetime DEFAULT NULL,
`last_modified` datetime DEFAULT NULL,
`reviews_read` int(5) NOT NULL DEFAULT '0',
`reviews_status` tinyint(1) NOT NULL,
PRIMARY KEY (`store_id`,`reviews_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;