Best SQL channel on youtube for intermediate to advanced querying 👍
@LearnatKnowstar2 жыл бұрын
Thank you so much!
@joeanderson34232 жыл бұрын
MOST Excellent. Clear and concise.
@LearnatKnowstar2 жыл бұрын
Thank you
@gangadharpandey3455 Жыл бұрын
wonderful explanation
@LearnatKnowstar Жыл бұрын
Thank you
@hv00321132 жыл бұрын
Very helpful. Thanks.
@LearnatKnowstar2 жыл бұрын
Thank you
@un_officialmcoc82182 жыл бұрын
thank you
@LearnatKnowstar2 жыл бұрын
Thank you
@Faisal15042 жыл бұрын
Thanks
@LearnatKnowstar2 жыл бұрын
Thank you
@Faisal15042 жыл бұрын
Second parameter can be added to dense rank function also?
@Faisal15042 жыл бұрын
Can you add second parameter to row number and dense rank functions like you did to rank ?
@LearnatKnowstar2 жыл бұрын
Yes, you can order all functions by the columns that are needed to define a unique record.
@vamshitha4492 жыл бұрын
Very useful but please maintain some clarity
@gajalakshmisamayadurai2 жыл бұрын
How to solve this problem declare @Country as table (country varchar(20)) insert into @Country select 'INDIA' insert into @Country select 'AUS' insert into @Country select 'Srilanka' insert into @Country select 'England' insert into @Country select 'South Africa' -- Input select * from @Country -- Required Output with single select statement Team_A Team B INDIA AUS INDIA Srilanka INDIA England INDIA South Africa AUS Srilanka AUS England AUS South Africa Srilanka England Srilanka South Africa England South Africa
@pradeepba14392 жыл бұрын
The output is of two tables or one table
@LearnatKnowstar2 жыл бұрын
You can simply use Join between two instances of the same table ex - select * from country a join country b On a.team < b.team
@LearnatKnowstar2 жыл бұрын
Thank you for posting this question. It is a good scenario and we will post a video tutorial as well in coming weeks for this scenario.
@saisarandarbha30312 жыл бұрын
declare @country as table (country varchar(20)); insert into @country select 'india'; insert into @country select 'aus'; insert into @country select 'srilanka'; insert into @country select 'england'; insert into @country select 'south africa'; with country as ( select *, row_number() over (order by (select 1)) as r from @country) select a.country,b.country from country a join country b on a.countryb.country where a.r