sql >> データベース >  >> RDS >> Mysql

MySQL Recursiveは、すべての子を親から取得します

    特定の親のすべてのレベルの子を取得したい場合は、これを試してください

    select  id,
            name,
            parent
    from    (select * from tablename
             order by parent, id) tablename,
            (select @pv := '1') initialisation
    where   find_in_set(parent, @pv) > 0
    and     @pv := concat(@pv, ',', id)
    


    1. postgresでjson配列を行に変換する方法

    2. MySQLは2つのテーブルからJOINを使用してランダムな行を選択します

    3. 新しいMacProを正当化する

    4. WindowsサービスとSQLServerを使用したOneWayWCFメッセージのキューイング