Deloitte Interview Question | | SQL Interview Question no 19 | Daily SQL Practice | Advanced SQL
8:54
Swiggy SQL Interview Question | SQL Interview Question no 22 | Daily SQL Practice | Advanced SQL
9:38
Adobe Interview Question | SQL Interview Question no 20 | Daily SQL Practice | Advanced SQL
Вставка
- Опубліковано 5 гру 2024
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