All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g0601_0700.s0608_tree_node.script.sql Maven / Gradle / Ivy

There is a newer version: 1.34
Show newest version
# Write your MySQL query statement below
# #Medium #LeetCode_Curated_SQL_70 #Database #SQL_I_Day_4_Union_and_Select
# #2022_04_14_Time_347_ms_(95.17%)_Space_0B_(100.00%)
select id,case
            when p_id is null then 'Root'
            when id in (select p_id from tree)  then 'Inner'
            else 'Leaf'
            end as type
from tree;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy