คุณใช้ประโยค“ ด้วย” ใน MySQL ได้อย่างไร?


112

ฉันกำลังแปลงแบบสอบถาม SQL Server ทั้งหมดของฉันเป็น MySQL และแบบสอบถามของฉันที่มีWITHอยู่ในนั้นล้วนล้มเหลว นี่คือตัวอย่าง:

WITH t1 AS
(
     SELECT article.*, userinfo.*, category.*
     FROM question
     INNER JOIN userinfo ON userinfo.user_userid = article.article_ownerid
     INNER JOIN category ON article.article_categoryid = category.catid
     WHERE article.article_isdeleted = 0
)
SELECT t1.*
FROM t1
ORDER BY t1.article_date DESC
LIMIT 1, 3

1
คุณโง่ลงคำถามนั้นใช่ไหม ไม่มีเหตุผลที่จะใช้ CTE ที่นั่นเลย
JeremyWeir

2
@NeilMcGuigan โอ้พระเจ้า! นี่เป็นหนึ่งในความคิดเห็นที่สนุกที่สุดที่ฉันเคยเห็นในไซต์นี้ (แม้ว่ามันจะไม่ตลก แต่ก็เป็นความหน้าด้าน!;)) +1
Juan Carlos Coto

ฉันคิดว่านี่เป็นคำถามที่เกี่ยวข้องหรือซ้ำกันการสร้างชุดวันที่
Adam Porad

2
@NeilMcGuigan บริการโฮสติ้งส่วนใหญ่ให้บริการเฉพาะ MySQL หรือ MariaDB เท่านั้นโดยไม่ต้องนับความปวดหัวของกระบวนการโยกย้ายจาก MySQL ไปยัง PostgreSQL การอัพเกรดเป็นMySQL 8หรือMariaDB 10.2.1
Ivanzinho

คำตอบ:


136

MySQL ก่อนเวอร์ชัน 8.0 ไม่รองรับส่วนคำสั่ง WITH (CTE ในคำพูดของ SQL Server; Subquery Factoring ใน Oracle) ดังนั้นคุณจึงเหลือเพียงการใช้:

  • ตารางชั่วคราว
  • โต๊ะ DERIVED
  • มุมมองแบบอินไลน์ (อย่างมีประสิทธิภาพว่าส่วนคำสั่ง WITH แสดงถึงอะไร - สามารถใช้แทนกันได้)

คำขอสำหรับคุณลักษณะย้อนหลังไปถึงปี 2549

ดังที่ได้กล่าวไว้คุณได้ให้ตัวอย่างที่ไม่ดี - ไม่จำเป็นต้องทำการเลือกย่อยหากคุณไม่ได้แก้ไขผลลัพธ์ของคอลัมน์ แต่อย่างใด:

  SELECT * 
    FROM ARTICLE t
    JOIN USERINFO ui ON ui.user_userid = t.article_ownerid
    JOIN CATEGORY c ON c.catid =  t.article_categoryid
   WHERE t.published_ind = 0
ORDER BY t.article_date DESC 
   LIMIT 1, 3

นี่คือตัวอย่างที่ดีกว่า:

SELECT t.name,
       t.num
  FROM TABLE t
  JOIN (SELECT c.id
               COUNT(*) 'num'
          FROM TABLE c
         WHERE c.column = 'a'
      GROUP BY c.id) ta ON ta.id = t.id

24
สิ่งนี้ควรกล่าวถึงว่าโดยทั่วไป CTE สนับสนุนการเรียกซ้ำซึ่งคุณไม่สามารถทำได้กับแบบสอบถามย่อย
Hogan

8
คำถามนี้เกี่ยวกับการ "เลียนแบบ" การสนับสนุน CTE ใน MySQL สิ่งหนึ่งที่ไม่สามารถทำได้คือฟังก์ชันการทำงานซ้ำของ CTE ในทุกแพลตฟอร์มที่รองรับนั่นคือประเด็นของฉัน
Hogan

8
ได้. และยังไม่ได้นำไปใช้ในสาขาการเปิดตัว เห็นได้ชัดว่าพวกเขา "อวด" คุณลักษณะ "นี้ที่งาน PHPCONFERENCE2010 ในลอนดอน ความคิดเห็นนี้ในรายงานข้อบกพร่องนั้นกำลังบอก [7 ต.ค. 2551 19:57 น.) สจวร์ตฟรีดเบิร์ก: "วาเลอรีย์พวกคุณต้องมีงานค้างที่ไม่น่าเชื่อสามสิบสามเดือนระหว่างการยื่นคำร้องและการได้รับการตอบรับครั้งแรกถือเป็นช่วงเวลาที่ยาวนานมากขอบคุณที่พิจารณาคำขอ "
พระอิศวร

5
ดูเหมือนว่าจะถูกเพิ่มไปยัง mysql 8 (ลิงก์ยังคงเป็นbugs.mysql.com/bug.php?id=16244 )
Brian

9
คำตอบนี้ต้องการการฆ่า - ในปี 2018 MySQL รองรับ WITH Clause แล้ว
jcansell

26

mysql พัฒนาทีมประกาศว่ารุ่น 8.0 จะมีสามัญตารางนิพจน์ใน MySQL (CTEs) ดังนั้นจึงเป็นไปได้ที่จะเขียนคำค้นหาเช่นนี้:


WITH RECURSIVE my_cte AS
(
  SELECT 1 AS n
  UNION ALL
  SELECT 1+n FROM my_cte WHERE n<10
)
SELECT * FROM my_cte;
+------+
| n    |
+------+
|    1 |
|    2 |
|    3 |
|    4 |
|    5 |
|    6 |
|    7 |
|    8 |
|    9 |
|   10 |
+------+
10 rows in set (0,00 sec)


bugs.mysql.com/bug.php?id=16244 (สิ่งนี้ถูกวางแผนไว้สำหรับ 8.0) + (CTE แบบเรียกซ้ำอยู่ใน MySQL 8.0.1 และใหม่กว่า)
gavenkoa

19

ใน Sql คำสั่ง with ระบุชุดผลลัพธ์ชั่วคราวที่เรียกว่านิพจน์ตารางทั่วไป (CTE) สามารถใช้สำหรับแบบสอบถามแบบวนซ้ำได้ แต่ในกรณีนี้จะระบุเป็นส่วนย่อย หาก mysql อนุญาตให้มีการเลือกย่อยฉันจะลอง

select t1.* 
from  (
            SELECT  article.*, 
                    userinfo.*, 
                    category.* 
            FROM    question INNER JOIN 
                    userinfo ON userinfo.user_userid=article.article_ownerid INNER JOIN category ON article.article_categoryid=category.catid
            WHERE   article.article_isdeleted = 0
     ) t1
ORDER BY t1.article_date DESC Limit 1, 3

นี่คือบทแนะนำสำหรับผู้เริ่มต้นใช้งาน CTE thecodeframework.com/introduction-to-mysql-cte
Gagan

6

ฉันไปตามลิงก์ที่แชร์โดย lisachenko และพบลิงก์อื่นไปยังบล็อกนี้: http://guilhembichot.blogspot.co.uk/2013/11/with-recursive-and-mysql.html

โพสต์แสดงวิธีการเลียนแบบการใช้ SQL C 2 รายการ คำอธิบายที่ดีมากเกี่ยวกับการทำงานของแบบสอบถามที่คล้ายกันกับ SQL C

1) ใช้กับเพื่อให้คุณไม่ต้องทำการสืบค้นย่อยเดียวกันหลาย ๆ ครั้ง

CREATE VIEW D AS (SELECT YEAR, SUM(SALES) AS S FROM T1 GROUP BY YEAR);
SELECT D1.YEAR, (CASE WHEN D1.S>D2.S THEN 'INCREASE' ELSE 'DECREASE' END) AS TREND
FROM
 D AS D1,
 D AS D2
WHERE D1.YEAR = D2.YEAR-1;
DROP VIEW D;

2) แบบสอบถามแบบเรียกซ้ำสามารถทำได้ด้วยขั้นตอนการจัดเก็บที่ทำให้การเรียกคล้ายกับการเรียกซ้ำด้วยแบบสอบถาม

CALL WITH_EMULATOR(
"EMPLOYEES_EXTENDED",
"
  SELECT ID, NAME, MANAGER_ID, 0 AS REPORTS
  FROM EMPLOYEES
  WHERE ID NOT IN (SELECT MANAGER_ID FROM EMPLOYEES WHERE MANAGER_ID IS NOT NULL)
",
"
  SELECT M.ID, M.NAME, M.MANAGER_ID, SUM(1+E.REPORTS) AS REPORTS
  FROM EMPLOYEES M JOIN EMPLOYEES_EXTENDED E ON M.ID=E.MANAGER_ID
  GROUP BY M.ID, M.NAME, M.MANAGER_ID
",
"SELECT * FROM EMPLOYEES_EXTENDED",
0,
""
);

และนี่คือรหัสหรือขั้นตอนที่เก็บไว้

# Usage: the standard syntax:
#   WITH RECURSIVE recursive_table AS
#    (initial_SELECT
#     UNION ALL
#     recursive_SELECT)
#   final_SELECT;
# should be translated by you to 
# CALL WITH_EMULATOR(recursive_table, initial_SELECT, recursive_SELECT,
#                    final_SELECT, 0, "").

# ALGORITHM:
# 1) we have an initial table T0 (actual name is an argument
# "recursive_table"), we fill it with result of initial_SELECT.
# 2) We have a union table U, initially empty.
# 3) Loop:
#   add rows of T0 to U,
#   run recursive_SELECT based on T0 and put result into table T1,
#   if T1 is empty
#      then leave loop,
#      else swap T0 and T1 (renaming) and empty T1
# 4) Drop T0, T1
# 5) Rename U to T0
# 6) run final select, send relult to client

# This is for *one* recursive table.
# It would be possible to write a SP creating multiple recursive tables.

delimiter |

CREATE PROCEDURE WITH_EMULATOR(
recursive_table varchar(100), # name of recursive table
initial_SELECT varchar(65530), # seed a.k.a. anchor
recursive_SELECT varchar(65530), # recursive member
final_SELECT varchar(65530), # final SELECT on UNION result
max_recursion int unsigned, # safety against infinite loop, use 0 for default
create_table_options varchar(65530) # you can add CREATE-TABLE-time options
# to your recursive_table, to speed up initial/recursive/final SELECTs; example:
# "(KEY(some_column)) ENGINE=MEMORY"
)

BEGIN
  declare new_rows int unsigned;
  declare show_progress int default 0; # set to 1 to trace/debug execution
  declare recursive_table_next varchar(120);
  declare recursive_table_union varchar(120);
  declare recursive_table_tmp varchar(120);
  set recursive_table_next  = concat(recursive_table, "_next");
  set recursive_table_union = concat(recursive_table, "_union");
  set recursive_table_tmp   = concat(recursive_table, "_tmp"); 
  # Cleanup any previous failed runs
  SET @str =
    CONCAT("DROP TEMPORARY TABLE IF EXISTS ", recursive_table, ",",
    recursive_table_next, ",", recursive_table_union,
    ",", recursive_table_tmp);
  PREPARE stmt FROM @str;
  EXECUTE stmt; 
 # If you need to reference recursive_table more than
  # once in recursive_SELECT, remove the TEMPORARY word.
  SET @str = # create and fill T0
    CONCAT("CREATE TEMPORARY TABLE ", recursive_table, " ",
    create_table_options, " AS ", initial_SELECT);
  PREPARE stmt FROM @str;
  EXECUTE stmt;
  SET @str = # create U
    CONCAT("CREATE TEMPORARY TABLE ", recursive_table_union, " LIKE ", recursive_table);
  PREPARE stmt FROM @str;
  EXECUTE stmt;
  SET @str = # create T1
    CONCAT("CREATE TEMPORARY TABLE ", recursive_table_next, " LIKE ", recursive_table);
  PREPARE stmt FROM @str;
  EXECUTE stmt;
  if max_recursion = 0 then
    set max_recursion = 100; # a default to protect the innocent
  end if;
  recursion: repeat
    # add T0 to U (this is always UNION ALL)
    SET @str =
      CONCAT("INSERT INTO ", recursive_table_union, " SELECT * FROM ", recursive_table);
    PREPARE stmt FROM @str;
    EXECUTE stmt;
    # we are done if max depth reached
    set max_recursion = max_recursion - 1;
    if not max_recursion then
      if show_progress then
        select concat("max recursion exceeded");
      end if;
      leave recursion;
    end if;
    # fill T1 by applying the recursive SELECT on T0
    SET @str =
      CONCAT("INSERT INTO ", recursive_table_next, " ", recursive_SELECT);
    PREPARE stmt FROM @str;
    EXECUTE stmt;
    # we are done if no rows in T1
    select row_count() into new_rows;
    if show_progress then
      select concat(new_rows, " new rows found");
    end if;
    if not new_rows then
      leave recursion;
    end if;
    # Prepare next iteration:
    # T1 becomes T0, to be the source of next run of recursive_SELECT,
    # T0 is recycled to be T1.
    SET @str =
      CONCAT("ALTER TABLE ", recursive_table, " RENAME ", recursive_table_tmp);
    PREPARE stmt FROM @str;
    EXECUTE stmt;
    # we use ALTER TABLE RENAME because RENAME TABLE does not support temp tables
    SET @str =
      CONCAT("ALTER TABLE ", recursive_table_next, " RENAME ", recursive_table);
    PREPARE stmt FROM @str;
    EXECUTE stmt;
    SET @str =
      CONCAT("ALTER TABLE ", recursive_table_tmp, " RENAME ", recursive_table_next);
    PREPARE stmt FROM @str;
    EXECUTE stmt;
    # empty T1
    SET @str =
      CONCAT("TRUNCATE TABLE ", recursive_table_next);
    PREPARE stmt FROM @str;
    EXECUTE stmt;
  until 0 end repeat;
  # eliminate T0 and T1
  SET @str =
    CONCAT("DROP TEMPORARY TABLE ", recursive_table_next, ", ", recursive_table);
  PREPARE stmt FROM @str;
  EXECUTE stmt;
  # Final (output) SELECT uses recursive_table name
  SET @str =
    CONCAT("ALTER TABLE ", recursive_table_union, " RENAME ", recursive_table);
  PREPARE stmt FROM @str;
  EXECUTE stmt;
  # Run final SELECT on UNION
  SET @str = final_SELECT;
  PREPARE stmt FROM @str;
  EXECUTE stmt;
  # No temporary tables may survive:
  SET @str =
    CONCAT("DROP TEMPORARY TABLE ", recursive_table);
  PREPARE stmt FROM @str;
  EXECUTE stmt;
  # We are done :-)
END|

delimiter ;

5

คุณสมบัติ 'Common Table Expression' ไม่มีใน MySQL ดังนั้นคุณต้องไปที่การสร้างมุมมองหรือตารางชั่วคราวเพื่อแก้ปัญหาที่นี่ฉันใช้ตารางชั่วคราว

ขั้นตอนการจัดเก็บที่กล่าวถึงที่นี่จะตอบสนองความต้องการของคุณ หากฉันต้องการรับสมาชิกในทีมทั้งหมดและสมาชิกที่เกี่ยวข้องขั้นตอนการจัดเก็บนี้จะช่วย:

----------------------------------
user_id   |   team_id
----------------------------------
admin     |   NULL
ramu      |   admin
suresh    |   admin
kumar     |   ramu
mahesh    |   ramu
randiv    |   suresh
-----------------------------------

รหัส:

DROP PROCEDURE `user_hier`//
CREATE DEFINER=`root`@`localhost` PROCEDURE `user_hier`(in team_id varchar(50))
BEGIN
declare count int;
declare tmp_team_id varchar(50);
CREATE TEMPORARY TABLE res_hier(user_id varchar(50),team_id varchar(50))engine=memory;
CREATE TEMPORARY TABLE tmp_hier(user_id varchar(50),team_id varchar(50))engine=memory;
set tmp_team_id = team_id;
SELECT COUNT(*) INTO count FROM user_table WHERE user_table.team_id=tmp_team_id;
WHILE count>0 DO
insert into res_hier select user_table.user_id,user_table.team_id from user_table where user_table.team_id=tmp_team_id;
insert into tmp_hier select user_table.user_id,user_table.team_id from user_table where user_table.team_id=tmp_team_id;
select user_id into tmp_team_id from tmp_hier limit 0,1;
select count(*) into count from tmp_hier;
delete from tmp_hier where user_id=tmp_team_id;
end while;
select * from res_hier;
drop temporary table if exists res_hier;
drop temporary table if exists tmp_hier;
end

สามารถเรียกได้โดยใช้:

mysql>call user_hier ('admin')//

2

คุณลักษณะนั้นเรียกว่านิพจน์ตารางทั่วไป http://msdn.microsoft.com/en-us/library/ms190766.aspx

คุณจะไม่สามารถทำสิ่งที่แน่นอนใน mySQL ได้สิ่งที่ง่ายที่สุดคืออาจทำให้มุมมองที่สะท้อน CTE นั้นและเลือกจากมุมมอง คุณสามารถทำได้ด้วยแบบสอบถามย่อย แต่จะทำงานได้ไม่ดีจริงๆ หากคุณพบ CTE ใด ๆ ที่ทำซ้ำฉันไม่รู้ว่าคุณจะสร้างมันขึ้นมาใหม่ได้อย่างไรโดยไม่ต้องใช้กระบวนงานที่จัดเก็บไว้

แก้ไข: อย่างที่ฉันพูดในความคิดเห็นของฉันตัวอย่างที่คุณโพสต์นั้นไม่จำเป็นต้องมี CTE ดังนั้นคุณต้องทำให้คำถามง่ายขึ้นเนื่องจากสามารถเขียนเป็น

SELECT article.*, userinfo.*, category.* FROM question
     INNER JOIN userinfo ON userinfo.user_userid=article.article_ownerid
     INNER JOIN category ON article.article_categoryid=category.catid
     WHERE article.article_isdeleted = 0
 ORDER BY article_date DESC Limit 1, 3

4
@derobert: ไม่จริง มุมมองมีข้อมูลเมตา (เช่นCREATE/DROP VIEW) และคุณสามารถให้สิทธิ์ในการดูได้
Bill Karwin

1

ฉันชอบคำตอบของ @ Brad จากหัวข้อนี้แต่ต้องการวิธีบันทึกผลลัพธ์เพื่อการประมวลผลเพิ่มเติม (MySql 8):

-- May need to adjust the recursion depth first
SET @@cte_max_recursion_depth = 10000 ; -- permit deeper recursion

-- Some boundaries 
set @startDate = '2015-01-01'
    , @endDate = '2020-12-31' ; 

-- Save it to a table for later use
drop table if exists tmpDates ;
create temporary table tmpDates as      -- this has to go _before_ the "with", Duh-oh! 
    WITH RECURSIVE t as (
        select @startDate as dt
      UNION
        SELECT DATE_ADD(t.dt, INTERVAL 1 DAY) FROM t WHERE DATE_ADD(t.dt, INTERVAL 1 DAY) <= @endDate
    )
    select * FROM t     -- need this to get the "with"'s results as a "result set", into the "create"
;

-- Exists?
select * from tmpDates ;

ซึ่งผลิต:

dt        |
----------|
2015-01-01|
2015-01-02|
2015-01-03|
2015-01-04|
2015-01-05|
2015-01-06|
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.