Тёмный
No video :(

SQL INTERVIEW QUESTION - Ungroup the data | SQL Scenario Interview Question 

Data Sculptor
Подписаться 1,7 тыс.
Просмотров 1,5 тыс.
50% 1

DML Script: datasculptor.b...

Опубликовано:

 

27 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 16   
@sahitikarnatakapu2829
@sahitikarnatakapu2829 6 месяцев назад
Thank you Sir..!! Its very useful 😁. Keep posting
@rajathratnakaran7893
@rajathratnakaran7893 Месяц назад
Awesome question
@datasculptor2895
@datasculptor2895 Месяц назад
Glad you liked it. Please subscribe to my channel 🙂
@yogicool100
@yogicool100 6 месяцев назад
great example for recursive CTEs implementation. Good step by step explanation. Already liked and subscribed for more amazing content. thanks
@datasculptor2895
@datasculptor2895 6 месяцев назад
Thank you 🙏
@MusicalShorts-hn1px
@MusicalShorts-hn1px 6 месяцев назад
This was really an interesting problem...Plz keep posting more such problems
@datasculptor2895
@datasculptor2895 6 месяцев назад
Sure. Please like share and subscribe to my channel 😊
@anirbanbiswas7624
@anirbanbiswas7624 2 месяца назад
with recursive cte as (select product,quantity,1 as level from products2 union all select cte.product,cte.quantity -1,level+1 from cte join products2 as p on p.product=cte.product where cte.quantity>1) select * from cte this can be done also
@chandanpatra1053
@chandanpatra1053 4 месяца назад
everytime i watch your videos I learn a new approach to solve. But my question is how many questions you neeed to solve before you attend for a data analyst/ data engineer role having 1.5 years. I mean there can be n number of sql questions. so what be the generic approach. I will wait for your reply.
@datasculptor2895
@datasculptor2895 4 месяца назад
Generic approach will be to learn the basics well. You can develop your logical skills slowly with experience. If you want to become a data analyst or engineer sql alone will not help you. You should learn data warehouse management as e
@DB-bk4bf
@DB-bk4bf 6 месяцев назад
Sir, If possible please explain SQL from scratch. Thank you Sir
@MJ-dq8om
@MJ-dq8om 6 месяцев назад
Can you please tell me which DBMS you have used in this video ?
@datasculptor2895
@datasculptor2895 6 месяцев назад
Microsoft SQL Server Studio (T-SQL)
@sujanthapa2856
@sujanthapa2856 3 месяца назад
select p.product, num from products p cross join generate_series(1,p.quantity) as num thank me later
@user-ev7bn9gv4q
@user-ev7bn9gv4q 6 месяцев назад
Why greater than 1 and not equal and greater?
@datasculptor2895
@datasculptor2895 6 месяцев назад
Its all about the order of execution, first the where clause will be considered, then the select clause. If we include1 as well, then Quantity-1 will make it 0, which is not required.
Далее
SQL INTERVIEW QUESTION | Retrieve DISTINCT Orders
8:38
SQL for Data Analytics - Learn SQL in 4 Hours
4:08:41
Просмотров 381 тыс.
Technical Interview in IT Industry| Try this Hack😀
5:32
Learn SQL In 60 Minutes
56:24
Просмотров 2,1 млн