Adobe Interview Question | SQL Interview Question no 20 | Daily SQL Practice | Advanced SQL

Поділитися
Вставка

КОМЕНТАРІ • 1

  • @user-gq6cg3ls7f
    @user-gq6cg3ls7f 24 дні тому +1

    with cte as(
    select * from tags cross apply string_split(tag, '#')
    )
    select id, value as tag, count(*) cnt from cte
    where value 0
    group by id, value
    order by id