[前][次][番号順一覧][スレッド一覧]

mysql:7436

From: "Kondo Tatsuya" <"Kondo Tatsuya" <konet@xxxxxxxxxx>>
Date: Thu, 10 Apr 2003 03:02:27 +0900
Subject: [mysql 07436] Re: JOIN を含む SQL 文(長文すみません)

近藤です。

> (おそらく)JOIN節が理解できません。

私もJOINは使用した事がないので理解出来ません。

> 以上のような、4テーブルから、以下の順番で表示されるクエリーを作成したい
> のです。
> |order_sales_id|sales_date|custom_name|category_name|item_name|
> order_sales_num|sales_price|

select t_order_sales_main.order_sales_id, t_order_sales_main.sales_date, m_custom.custom_name, m_category.category_name,
m_item.item_name,
       t_order_sales_detail.order_sales_num, t_order_sales_detail.sales_price
  from t_order_sales_main, t_order_sales_detail, m_custom, m_item, m_category
 where t_order_sales_main.order_sales_id = t_order_sales_detail.order_sales_id
   and m_custom.custom_id = t_order_sales_main.custom_id
   and m_item.item_id = t_order_sales_detail.item_id
   and m_category.category_id = m_item.category_id;

試してないですが、これで出来ませんか?
提示したテーブル一覧に、m_categoryテーブルがないのが気になります。

> 1.|order_sales_id|sales_date|custom_name|ならば、
> select order_sales_id, sales_date, custom_name from m_custom LEFT JOIN
> t_order_sales_main USING (custom_id);
> (これは、表示できました)
>
> 2.|order_sales_id|order_sales_num|sales_price|item_name|の時、
> select order_sales_id, order_sales_num, sales_price, item_name from
> m_item LEFT JOIN t_order_sales_detail USING (item_id)
> (これは、だめでした?)

(1)はセミコロンあるのに(2)はないからとかじゃなくて?

# JOINは本当に分かりません(汗)


[前][次][番号順一覧][スレッド一覧]

      7435 2003-04-10 02:23 [tamura <zai91210@xxx] JOIN を含む SQL 文(長文すみません)    
->    7436 2003-04-10 03:02 ┣["Kondo Tatsuya" <kon]                                       
      7440 2003-04-10 13:33 ┃┗[tamura <zai91210@xxx]                                     
      7441 2003-04-10 13:42 ┃ ┗[Koji KUSANAGI <kusan] Off-topic (was: Re: JOIN を含む SQL 文)
      7437 2003-04-10 05:27 ┣[Shinya Kawaji <kawaj]                                       
      7444 2003-04-10 15:00 ┃┗["Kondo Tatsuya" <kon]                                     
      7445 2003-04-10 15:15 ┃ ┣[Michiaki Negoro <m-n]                                   
      7448 2003-04-10 15:30 ┃ ┗[<enim2@xxxxxxxxxx>  ]                                   
      7470 2003-04-11 03:27 ┃  ┗["Kondo Tatsuya" <kon]                                 
      7471 2003-04-11 03:49 ┃   ┣[Tomohiro 'Tomo-p' KA]                               
      7472 2003-04-11 04:10 ┃   ┗[Shinya Kawaji <kawaj]                               
      7474 2003-04-11 14:45 ┃    ┗["Kondo Tatsuya" <kon]                             
      7475 2003-04-11 18:27 ┃     ┗[<enim2@xxxxxxxxxx>  ]                           
      7478 2003-04-12 02:36 ┃      ┗["Kondo Tatsuya" <kon]                         
      7438 2003-04-10 11:14 ┗[UNO Shintaro <uno@xx]