Changeset 4757 for temp/trunk/html/test


Ignore:
Timestamp:
2006/09/15 11:07:04 (20 years ago)
Author:
kakinaka
Message:

blank

File:
1 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/html/test/kakinaka/mysql.php

    r4734 r4757  
    33 
    44print("start<br>"); 
    5  
     5/* 
    66$dsn = "mysql://eccube_db_user:[email protected]/eccube_db"; 
    77print($dsn."<br>"); 
     
    1515} 
    1616 
     17*/ 
     18 
     19$sql = ' 
     20        (SELECT 
     21        product_id, 
     22        product_code_min, 
     23        product_code_max, 
     24        price01_min, 
     25        price01_max, 
     26        price02_min, 
     27        price02_max, 
     28        stock_min, 
     29        stock_max, 
     30        stock_unlimited_min, 
     31        stock_unlimited_max, 
     32        del_flg, 
     33        status, 
     34        name, 
     35        comment1, 
     36        comment2, 
     37        comment3, 
     38        rank, 
     39        main_list_comment, 
     40        main_image, 
     41        main_list_image, 
     42        product_flag, 
     43        deliv_date_id, 
     44        sale_limit, 
     45        point_rate, 
     46        sale_unlimited, 
     47        create_date, 
     48        deliv_fee 
     49        ,(SELECT rank AS category_rank FROM dtb_category AS T4 WHERE T1.category_id = T4.category_id) 
     50        ,(SELECT category_id AS sub_category_id FROM dtb_category T4 WHERE T1.category_id = T4.category_id) 
     51    FROM 
     52        dtb_products AS T1 RIGHT JOIN (SELECT product_id AS product_id_sub, MIN(product_code) AS product_code_min, MAX(product_code) AS product_code_max, MIN(price01) AS price01_min, MAX(price01) AS price01_max, MIN(price02) AS price02_min, MAX(price02) AS price02_max, MIN(stock) AS stock_min, MAX(stock) AS stock_max, MIN(stock_unlimited) AS stock_unlimited_min, MAX(stock_unlimited) AS stock_unlimited_max FROM dtb_products_class GROUP BY product_id) AS T2 ON T1.product_id = T2.product_id_sub 
     53    ) vw_products_allclass '; 
     54     
     55print($sql); 
     56 
     57print("end"); 
     58 
    1759?>  
Note: See TracChangeset for help on using the changeset viewer.