我需要一个查询,它以以下方式给我带来结果:
prescription created date
right lens product
left lens product
store name
is prescription used for order **Yes / no**
我的数据库表如下:
**prescriptions**
creation_date
right_product_id
left_product_id
store_id
customer_id
**products**
id
name1
**stores**
id
name
**orders**
id
store_id
customer_id
**order_products**
id
order_id
right_product_id
left_product_id
一个问题是,我没有使用prescription_id
我的订单表,所以我不能带来直接的结果,因此我需要使用customer_id
和store_id
字段来匹配处方和订单是否下达。
谁能给我一个带来上述结果的查询?
结果应该是这样的:
处方日期 | right_lens_product | left_lens_product | 商店 | 使用的处方
2012/12/12 | 产品 1 | 产品 2 | xYZ 商店 | 是/否
尽早回复将不胜感激。
谢谢 !