我有我的店鋪數據庫,我想一起加入兩張桌子。如何將列添加到基於一列的另一個表中?
id_order | reference | id_shop_group | id_shop | id_carrier | id_lang | id_customer | id_cart
這是我orders
表的標題行和下面是customers
表的標題。
id_customer | id_shop_group | id_shop | id_gender | firstname | lastname
我想要做的是加入他們根據id_customer
列。更具體地說,我想添加customers
的所有列,除了那些已經存在的列以orders
表爲基礎的id_customer
。連接表後應該是這樣的:
id_order|reference|id_shop_group|id_shop|id_carrier|id_lang|id_customer|id_cart|id_gender|firstname|lastname
當一個解決方案搜索,我發現INNER JOIN
關鍵字,但我不知道如何使用它,我想要的方式。