我正在尝试创建 2 个表的视图。
目前,我正在使用下面的行,这工作正常,但我得到的信息太多,我需要更有选择性并选择列:
第一张桌子
wp_cart66_orders and i need to pull
bill_first_name_, bill_last_name
status=, new or shipped etc...
第二张桌子
wp_cart_66_order_items
description, quantity
我不确定是否需要创建视图或仅使用此查询。
此外,如果是这种情况,我可能需要指出如何创建它的正确方向。
select wp_cart66_orders.*, wp_cart66_order_items.*
from wp_cart66_orders, wp_cart66_order_items
where wp_cart66_orders.id=wp_cart66_order_items.order_id
and wp_cart66_orders.status = 'new';
谢谢。